Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can this be faster
Message
De
28/10/2015 14:15:04
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2014
Application:
Desktop
Divers
Thread ID:
01626554
Message ID:
01626562
Vues:
53
>Try
>
>SELECT SI.AccountCode, MAX(SI.InvoiceDate) AS Latest  
>	FROM SalesInvoiceItem IV 
>		INNER JOIN SalesInvoice SI ON IV.InvoiceNumber = SI.InvoiceNumber
>	WHERE ProductCode='56.GTR003.001.01' AND MAX(SI.InvoiceDate) < DATEADD(MONTH, - 1,GETDATE())
>GROUP BY SI.AccountCode
>
>

Sergey, you can't use MAX in a WHERE clause. Only in a HAVING, or within context of a subquery. (And I see Naomi just posted the same thing)

Do you test code before posting it? :)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform