Notice
Recent Posts
Recent Comments
Link
나의 개발일지
[프로그래머스] Lv.3 헤비 유저가 소유한 장소 [Oracle, 오라클] 본문
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;
'프로그래머스' 카테고리의 다른 글
[프로그래머스] Lv.1 [1차] 비밀지도 [Python, 파이썬] KAKAO (0) | 2023.09.22 |
---|---|
[프로그래머스] Lv.1 숫자 문자열과 영단어 [Python, 파이썬] KAKAO (0) | 2023.09.22 |
[프로그래머스] Lv.2 피로도 [Python, 파이썬] (0) | 2023.09.16 |
[프로그래머스] Lv.2 땅따먹기 [Python, 파이썬] (0) | 2023.09.03 |
[프로그래머스] Lv.3 이중 우선순위 큐 [Python, 파이썬] (0) | 2023.09.01 |
Comments