vote up 1 vote down star

Consider the following TSQL:

SET @WhereClause1 = 'where a.Date > ' + @InvoiceDate

I get a date/string conversion error. @InvoiceDate is a datetime variable. What is the right syntax?

flag

4 Answers

vote up 1 vote down check

This might work.

SET @WhereClause1 = 'where a.Date > ''' + convert(varchar, @InvoiceDate) + ''''
link|flag
this doesn't work because you have to enclosed the date (inside the string) with quotation marks – eKek0 Apr 2 at 5:12
Ok, thanks, I'll fix it – Andy White Apr 2 at 5:14
with the '' correction this did what I needed. thanks all – Jeff Apr 2 at 5:19
vote up 4 vote down

This will work:

SET @WhereClause1 = 'where a.Date > ''' + cast(@InvoiceDate as varchar(100)) + ''''
link|flag
i wish I could mark two answers approved because this one works too. thanks – Jeff Apr 2 at 5:18
+1 for getting it 100% right – Andy White Apr 2 at 5:20
When I have that trouble, I select one and give points (arrow up) to the others (if they are more than 1). That doesn't mean you have to do the same :) – eKek0 Apr 2 at 5:21
vote up 1 vote down

... and you will probably need to enclose date strings in quotes.

It would probably actually be better to construct the date string in the calling routine because you should be checking there for null values and maybe other validations.

link|flag
vote up 1 vote down

Since your composing query as a string first, then I think you need to convert @InvoiceDate to a string with something like this. http://www.databasejournal.com/features/mssql/article.php/10894_2197931_1/Working-with-SQL-Server-DateTime-Variables-Part-Two---Displaying-Dates-and-Times-in-Different-Formats.htm

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.