From 7b2120d1227151cd637519f02f8c43936dc81ba5 Mon Sep 17 00:00:00 2001 From: - <-> Date: Tue, 8 Feb 2022 19:30:18 -0800 Subject: [PATCH] main rankings query now places maps with the most records at the top --- queries/mranks.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries/mranks.sql b/queries/mranks.sql index 1331a22..9d69e1f 100644 --- a/queries/mranks.sql +++ b/queries/mranks.sql @@ -5,4 +5,4 @@ where Cts_ranks.mapid = Cts_times.mapid and cryptokey = idvalue and idrank = 1 group by Cts_ranks.mapid -order by max(trank); \ No newline at end of file +order by count(trank) DESC;