LeetCode Solution, Easy, 511. Game Play Analysis I
511. Game Play Analysis I
題目敘述
SQL Schema:
Create table If Not Exists Activity (player_id int, device_id int, event_date date, games_played int)
Truncate table Activity
insert into Activity (player_id, device_id, event_date, games_played) values ('1'...
blog.taiwolskit.com2 min read