Afficher un message
Vieux 04/09/2007, 15h34   #1
Chris H
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut String/Date Concatenation causes conversion error - streamline fix suggestions

Hi,
I'm trying to concatenate a Description (nchar(100)) and Date
(datetime) as Description and my initial effort was just
"...description+' '+open_date as description..." which throws a date/
string conversion error; finally came up with a working string below
but don't think it's the optimal way to do this - any suggestions?

select (rtrim(description)+'
'+rtrim(convert(char(2),datepart(mm,open_date)))
+'/'+convert(char(2),datepart(dd,open_date))
+'/'+convert(char(4),datepart(yyyy,open_date))) as description from
oncd_opportunity where opportunity_id=?

open_date is not a required field at the db level, but it is required
on the form so it should not be null as a rule.

  Réponse avec citation
 
Page generated in 0,04427 seconds with 9 queries