Programmers/Level3

헤비 유저가 소유한 장소

zzunsik 2021. 12. 23. 12:40
1
2
select id, name, host_id from places 
where host_id in (select host_id from places group by host_id having count(*>= 2order by id;
cs

서브쿼리를 사용하는 문제이다.