Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can this be faster
Message
 
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2014
Application:
Desktop
Miscellaneous
Thread ID:
01626554
Message ID:
01626631
Views:
35
>>>Actually, further to last I think all it needs is :
SELECT SI.AccountCode,MAX(SI.InvoiceDate) as LastInvoiceDate FROM LV1_Planglow.LV1_DB.SalesInvoiceItem IV 
>>>INNER JOIN LV1_Planglow.LV1_DB.SalesInvoice SI ON IV.InvoiceNumber = SI.InvoiceNumber
>>>WHERE ProductCode='56.GTR003.001.01' 
>>>GROUP BY SI.AccountCode
>>>HAVING MAX(SI.InvoiceDate) < DATEADD(MONTH, - 1,GETDATE())
>>
>>Yes, exactly. But don't forget to add alias to the ProductCode. Even when the column comes from a particular table, as long as you're using more than 1 table in a query give every single column an alias, so maintenance will become easier later.
>
>Thx.
>BTW I tried using TIMESTAMP instead of GETDATE() and it was actually slower ......

How exactly did you measure the performance?
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform