dtfrancis15
IS-IT--Management
I want to be able to list the top 10 customers by turnover. How would I use the TOP command in the following statement?
SELECT Sum(NetValue) as NetValue, CustomerName
FROM InvoicedOrders
WHERE Month = May AND Year = 2001
SELECT Sum(NetValue) as NetValue, CustomerName
FROM InvoicedOrders
WHERE Month = May AND Year = 2001