Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to use datetime difference in SQL Select?
Message
De
20/03/2009 17:53:38
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01390159
Message ID:
01390178
Vues:
51
>>Hi,
>>
>>How do you SUM number of days difference between two DateTime type fields as following:
>>
>>
>>select SUM( DATETIME1 - DATETIME2) AS NUMDAYS
>>
>
>It should work the way it's

I got:
Operand data type datetime is invalid for sum operator.
Because DATETIME1 - DATETIME2 is also datetime.
DECLARE @Test TABLE (Fld1 datetime, Fld2 datetime)
DECLARE @i int
SET @i = 0
WHILE @i < 20
      BEGIN 
         INSERT INTO @Test VALUES (GETDATE()+@i, GETDATE()+@i*20)
         SET @i = @i +1
      END
SELECT SUM(Fld2-Fld2) FROM @Test
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform