Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is there a better way of selecting information for a dat
Message
De
24/04/2007 21:18:11
Peter Wagner
Point Informática Ltda.
Limeira, Brésil
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01219598
Message ID:
01219604
Vues:
19
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform