order by TotalExperienceDiff desc in diff action_id

This commit is contained in:
norohind 2021-11-21 18:01:56 +03:00
parent 2520573a77
commit b1a0424ac6
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -108,4 +108,5 @@ inner join
order by squads_stats_states.action_id desc
limit 1)) old_stats
on new_stats.squadron_id = old_stats.squadron_id
where TotalExperienceDiff > 0;"""
where TotalExperienceDiff > 0
order by TotalExperienceDiff desc;"""