문제

I have a query that looks like so:

SELECT Name, SUM(Price * Quantity) AS Total
FROM Sales  
WHERE Date = " + ddItems.SelectedItem + "
GROUP BY Name

How can I show the top 10 totals?

도움이 되었습니까?

해결책

In MySQL the number of rows can be limited with the LIMIT clause, so you can add this to your query to get the top 10:

ORDER BY Total DESC
LIMIT 10
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top