All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0501_0600.s0511_game_play_analysis_i.script.sql Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
# Write your MySQL query statement below
# #Easy #LeetCode_Curated_SQL_70 #Database #SQL_I_Day_8_Function
# #2023_01_10_Time_790_ms_(45.04%)_Space_0B_(100.00%)
select distinct(player_id), min(event_date) as first_login
from activity
group by player_id




© 2015 - 2024 Weber Informatics LLC | Privacy Policy