的輸出最大結果我使用的查詢:查詢來獲取來自其他查詢
select count(registration.stu_id) as cnt,course.dept_id from registration,course where registration.course_id=course.course_id group by registration.course_id, course.dept_id
從該查詢我得到的結果是:
cnt | dept_id
2 | 1
1 | 3
1 | 2
1 | 4
1 | 5
現在我需要找出與結果max cnt
我應該使用什麼查詢?
限制不支持在MS SQL服務器 –
是SQL Server不支持限制,您可以改爲使用頂部關鍵字。你在mysql中標記了這個問題。 – Krishna