🍋 ⚾️ 💻 🎬 🎮

coding_test/SQL 문제

[LeetCode] 1148. Article Views I (SELECT)

aeightchill 2025. 2. 7. 22:17
728x90

< 문제 >

[SQL50] 1148. Article Views I (SELECT)



< 풀이 >

SELECT author_id AS id
FROM Views
WHERE author_id = viewer_id
GROUP BY author_id
ORDER BY author_id;
728x90