[코딩테스트]/[SQL]

[StrataScratch - SQL] (Easy) Find all posts which were reacted to with a heart

잰잰' 2025. 4. 17. 10:04

문제

하트로 반응한 모든 게시물을 찾아주세요. 그런 게시물에 대해서는 facebook_posts 테이블의 모든 열을 출력해주세요.

 

테이블설명

 

예상결과

 

✏️ 풀이

SELECT DISTINCT p.*
FROM facebook_posts AS p
INNER JOIN facebook_reactions AS r ON p.poster = r.poster AND p.post_id = r.post_id
WHERE reaction = 'heart';

JOIN할 때 post_id와 poster 두 개의 조건을 줘야 한다