【leetcode】596. 超過5名學生的課

題目:

答案:

# Write your MySQL query statement below
select 
class
from
courses
group by class
having count(DISTINCT student) >= 5;
參考鏈接:https://blog.csdn.net/ooooooobh/article/details/52795073
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章