반응형
https://leetcode.com/problems/article-views-i/description/
distinct를 사용해 해결한 문제였습니다.
📕 풀이방법
📔 풀이과정
자기 자신의 기사를 확인한 author_id를 기사를 여러번 확인하는 경우가 있기 때문에 중복 방지를 위해 distinct를 걸어 오름차순으로 select합니다.
📕 Code
📔 ANSI SQL
SELECT distinct author_id AS id
FROM views
where author_id = viewer_id
order by author_id;
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1251. Average Selling Price (0) | 2023.12.20 |
---|---|
(SQL) - LeetCode (easy) 1211. Queries Quality and Percentage (2) | 2023.12.06 |
(SQL) - LeetCode (easy) 1141. User Activity for the Past 30 Days I (0) | 2023.11.07 |
(SQL) - LeetCode (easy) 1050. Actors and Directors Who Cooperated At Least Three Times (0) | 2023.10.18 |
(SQL) - LeetCode (easy) 620. Not Boring Movies (0) | 2023.05.24 |