문제
→ 자신의 기사 중 적어도 하나의 기사를 본 작가를 찾는 문제 (author_id = viewer_id가 같은 행을 찾는 문제)
입력 코드
SELECT DISTINCT author_id AS id
FROM Views
WHERE author_id = viewer_id
ORDER BY id ASC
코드 설명
#SELECT #DISTINCT #WHERE #ORDER BY
문제 출처
'SQL' 카테고리의 다른 글
#80. [LeetCode / MySQL] 1378. Replace Employee ID With The Unique Identifier (0) | 2023.09.06 |
---|---|
#79. [LeetCode / MySQL] 1683. Invalid Tweets (0) | 2023.09.05 |
#77. [LeetCode / MySQL] 595. Big Countries (0) | 2023.09.03 |
#76. [LeetCode / MySQL] 584. Find Customer Referee (0) | 2023.09.02 |
#75. [LeetCode / MySQL] 1757. Recyclable and Low Fat Products (0) | 2023.09.01 |