https://programmers.co.kr/learn/courses/30/lessons/77487
SELECT *
FROM places
WHERE host_id in (
SELECT host_id
FROM places
GROUP BY host_id
HAVING count(host_id)>=2)
ORDER BY id