리트코드(LeetCode) SQL 문제풀이 - 1148. Article Views I

2023. 1. 24. 17:57코딩테스트/리트코드(LeetCode) - SQL Study Plan

MySQL 문제 1148. Article Views I

select DISTINCT author_id as id
    from Views
    where author_id=viewer_id
    order by 1

 

728x90