문제
https://leetcode.com/problems/article-views-i/submissions/
정답
SELECT author_id as 'id'
FROM Views
WHERE author_id = viewer_id
GROUP BY author_id
ORDER BY author_id
https://leetcode.com/problems/article-views-i/submissions/
SELECT author_id as 'id'
FROM Views
WHERE author_id = viewer_id
GROUP BY author_id
ORDER BY author_id