Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is there a better way of selecting information for a dat
Message
From
24/04/2007 21:18:11
Peter Wagner
Point Informática Ltda.
Limeira, Brazil
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01219598
Message ID:
01219604
Views:
14
see the sample...
select orderid from orders where Convert(char(10),orderdate,112) = '19960829'
gives this...
SELECT	[Id]
FROM	[MyTable]
WHERE	CONVERT(CHAR(10),DateField,112) = @DateField
Code 112 in convert means ISO, but you can use 110 for USA mm-dd-yy, see BOL.

[ ]'s
Peter

>Consider the following select statement:
>
>SELECT	[Id]
>FROM	[MyTable]
>WHERE	YEAR(DateField) = YEAR(@DateField) AND
>	MONTH(DateField) = MONTH(@DateField) AND
>	DAY(DateField) = DAY(@DateField)
>
>
>I want to select the records that have the same date as the parameter, but I do not care about the time part of the field or parameter.
>Is there another (better) way of doing this?
>
>Thanks,
>Einar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform