automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-27 16:35:39 +02:00
parent ae13fc40d5
commit 5d5be6918b

6
8.sql
View File

@@ -0,0 +1,6 @@
-- 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";
-- WHERE d."name" = 'Cambridge';