IT/코딩테스트
[Leetcode] 511. Game Play Analysis I
이주디
2023. 8. 10. 01:35
728x90
https://leetcode.com/problems/game-play-analysis-i/
# Write your MySQL query statement below
select player_id, min(event_date) as first_login from Activity group by player_id;
728x90