Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Working with dates
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Divers
Thread ID:
00531688
Message ID:
00534988
Vues:
11
The index is a good point.
I'll try creating a second variable with the next day's date.

Thanks guys!

Chris


>DOH!!!! (Bashing head on wall)
>
>Thanks for the heads up!
>
>>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'
Chris
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform