나의 개발일지

[프로그래머스] Lv.3 헤비 유저가 소유한 장소 [Oracle, 오라클] 본문

프로그래머스

[프로그래머스] Lv.3 헤비 유저가 소유한 장소 [Oracle, 오라클]

YoonJuHan 2023. 9. 22. 17:47
SELECT id, name, host_id
from places a
where host_id in (select host_id
                  from places b
                  group by host_id
                  having count(name) >= 2)
order by id;
Comments