IT/코딩테스트

[Leetcode] 1148. Article Views I

이주디 2023. 8. 29. 01:01
728x90

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

SELECT 
  DISTINCT(viewer_id) AS id 
FROM Views 
WHERE author_id = viewer_id
ORDER BY id ASC;
728x90
저작자표시 비영리 변경금지 (새창열림)