코린이의 소소한 공부노트

[LeetCode/Easy] 1148. Article Views I 본문

코딩테스트 풀이/SQL

[LeetCode/Easy] 1148. Article Views I

무지맘 2023. 4. 6. 01:18

1. Input

1) Table: Views (pk = 없음)

 

2. Output

1) 자신의 글을 한번 이상 본 모든 작가들의 id를 출력

- id는 오름차순으로 정렬한다.

 

3. Example

 

4. Code

1) 첫 코드(2023/04/06)

select author_id as id
from (
  select author_id
  from Views
  where author_id = viewer_id
  group by author_id
) a
order by id;