Skip to content

Commit ac8cada

Browse files
committed
Game Play Analysis I
1 parent 596be6a commit ac8cada

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

SQL/Game_Play_Analysis_I.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SELECT player_id, MIN(event_date) as first_login
2+
FROM Activity
3+
GROUP BY player_id
4+
ORDER BY player_id asc;

0 commit comments

Comments
 (0)