grouping by playername seemed to cause extra rows accidentally
This commit is contained in:
parent
18caf33d3e
commit
c07f8839bb
@ -37,7 +37,7 @@ def get_top15_player_activity_ze():
|
|||||||
inner join unloze_playtimestats.player_time pt
|
inner join unloze_playtimestats.player_time pt
|
||||||
on pa.steamid = pt.steam_id
|
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')
|
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
|
ORDER BY time_this_week DESC
|
||||||
limit 15
|
limit 15
|
||||||
"""
|
"""
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user