bot50
2026-04-27 14:45:46 +00:00
commit 2f59c8ad0e
13 changed files with 55 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";