bot50
2026-04-27 14:56:11 +00:00
commit a720c9df86
13 changed files with 63 additions and 0 deletions

5
8.sql Normal file
View File

@@ -0,0 +1,5 @@
-- write a SQL query to display the names of all school districts and the number of pupils enrolled in each.
SELECT d."name", e."pupils"
FROM "expenditures" AS e
JOIN "districts" AS d
ON e."district_id" = d."id";