[LeetCode] SQL 50 / MYSQL / 1148. Article View I

2023. 11. 12. 22:00Coding/LeetCode-SQL

문제링크

https://leetcode.com/problems/article-views-i/description/

 

Article Views I - LeetCode

Can you solve this real interview question? Article Views I - Table: Views +---------------+---------+ | Column Name | Type | +---------------+---------+ | article_id | int | | author_id | int | | viewer_id | int | | view_date | date | +---------------+---

leetcode.com

문제

소스코드

# Write your MySQL query statement below
SELECT distinct author_id AS id
FROM Views
WHERE author_id = viewer_id
ORDER BY author_id ASC;

SQL 에서는 다른 코딩 언어들과는 다르게 같다라는 표현을 = 하나로 표현하면 된다는 점을 유의하면 될 것 같다.

그리고 넷째줄의 ORDER BY author_id ASC;라는 조건을 포함해서 'id 기준'으로 오름차순 정렬이라는 것을 명시한다.