Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Working with dates
Message
From
21/07/2001 00:31:03
 
 
To
17/07/2001 16:32:05
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
00531688
Message ID:
00533444
Views:
8
Be careful that you don't affect performance. Something like this:

WHERE
CONVERT(varchar(10), datecolumn, 112) = '20010531'

may affect performance bacause SQL Server cannot use an index to solve the query. You might want to try something like:

WHERE
datecolumn >= '20010531' AND datecolumn < '20010601'

Just my two cents.

-Mike
Michael Levy
MCSD, MCDBA
ma_levy@hotmail.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform