automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-27 16:56:07 +02:00
parent 42e2067707
commit 057280fe20

8
10.sql
View File

@@ -0,0 +1,8 @@
-- write a SQL query to find the 10 public school districts with the highest per-pupil expenditures.
-- Your query should return the names of the districts and the per-pupil expenditure for each.
SELECT d."name", e."per_pupil_expenditure"
FROM "expenditures" AS e
JOIN "districts" AS d
ON e."district_id" = d."id"
ORDER BY "per_pupil_expenditure" DESC
LIMIT 10;