automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-27 16:45:42 +02:00
parent 5d5be6918b
commit 42e2067707
2 changed files with 8 additions and 1 deletions

8
9.sql
View File

@@ -0,0 +1,8 @@
-- write a SQL query to find the name (or names) of the school district(s) with the single least number of pupils.
-- Report only the name(s).
SELECT d."name"
FROM "expenditures" AS e
JOIN "districts" AS d
ON e."district_id" = d."id"
ORDER BY "pupils" ASC
LIMIT 1;