[MySQL] 596. Classes More Than 5 Students(GROUP BY, HAVING)
2022. 11. 26. 19:22ㆍTIL💡/Database
그룹 중 일부만 출력한다.
SELECT class
FROM Courses
GROUP BY class
HAVING COUNT(student) >= 5
'TIL💡 > Database' 카테고리의 다른 글
[MySQL] 584. Find Customer Referee (0) | 2022.11.26 |
---|---|
[MySQL] 597. Friend Requests I: Overall Acceptance Rate (0) | 2022.11.26 |
[MongoDB] Index의 자료구조는 무엇일까? B-Tree (0) | 2022.10.15 |
[Python] Celery로 비동기 실시간 데이터 적재 및 분석 처리 (0) | 2022.09.09 |
[MongoDB] 소개와 설명 (0) | 2022.06.25 |