[LeetCode] SQL 50 / MYSQL / 1148. Article View I
2023. 11. 12. 22:00ㆍCoding/LeetCode-SQL
문제링크
https://leetcode.com/problems/article-views-i/description/
문제
소스코드
# 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 기준'으로 오름차순 정렬이라는 것을 명시한다.
'Coding > LeetCode-SQL' 카테고리의 다른 글
[LeetCode] SQL 50 / Oracle / 1378. Replace Employee ID With The Unique Identifier (0) | 2024.01.06 |
---|---|
[LeetCode] SQL 50 / MYSQL / 1683. Invalid Tweets (0) | 2023.11.12 |
[LeetCode] SQL 50 / MYSQL / 595.Big Countries (0) | 2023.11.12 |
[LeetCode] SQL 50 / MYSQL / 584. Find Customer Referee (0) | 2023.11.12 |
[LeetCode] SQL 50 / MYSQL / 1757.Recyclable and Low Fat Products (0) | 2023.11.12 |