automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-23 16:02:10 +02:00
parent 7f0ffb76a9
commit 1d56d1e226

2
4.sql
View File

@@ -6,5 +6,5 @@ SELECT "city", COUNT("name") AS "Number of schools"
FROM "schools" FROM "schools"
WHERE "type" = "Public School" WHERE "type" = "Public School"
GROUP BY "city" GROUP BY "city"
ORDER BY "Number of schools" DESC, "name" DESC ORDER BY "Number of schools" DESC, "city" ASC
LIMIT 10; LIMIT 10;