grouping by playername seemed to cause extra rows accidentally

This commit is contained in:
jenz 2026-04-02 13:47:48 +02:00
parent 18caf33d3e
commit c07f8839bb

View File

@ -37,7 +37,7 @@ def get_top15_player_activity_ze():
inner join unloze_playtimestats.player_time pt
on pa.steamid = pt.steam_id
where pa.steamid not in ('STEAM_0:0:518094602', 'STEAM_0:0:204398871', 'STEAM_0:1:60189040', 'STEAM_0:0:610560766')
GROUP BY pt.steam_id, pt.player_name
GROUP BY pt.steam_id
ORDER BY time_this_week DESC
limit 15
"""