공간을 둘 이상 등록한 유저, 즉 count > 1인 유저를 찾으면 되는 것이다.
결론적으로, count > 1인 그룹 안에 들어가는 유저를 찾는 쿼리문을 만들어주면 되는 것이다.
select * from PLACES where host_id in (select host_id from places group by host_id having count(*) > 1) order by id asc;