문제
Solution (MySQL)
SELECT id,name,p2.host_id from places as p1
inner join (
select host_id, count(host_id) as cnt from places
group by host_id
having cnt>=2
)as p2
on p1.host_id=p2.host_id
order by ID
결과
반응형
'Problem Solving > Programmers' 카테고리의 다른 글
프로그래머스 (Level 1) : 숫자 문자열과 영단어 (Python, dictionary) (2) | 2022.02.09 |
---|---|
SQL (Level 4) : 입양 시각 구하기(2) - Group by, with Recursive, HOUR(datetime) (0) | 2021.07.09 |
그리디 (Level 1) : 체육복 (Python, copy 라이브러리) (0) | 2021.05.17 |
완전탐색 (Level 1) : 모의고사 (Python) (0) | 2021.05.10 |
정렬 (Level 1) : k번째 수 (Python) (0) | 2021.05.10 |