automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-23 15:29:19 +02:00
parent 0870d731c7
commit 2f774d822e
2 changed files with 3 additions and 1 deletions

2
2.sql
View File

@@ -1,2 +1,2 @@
-- write a SQL query to find the names of districts that are no longer operational.
SELECT * FROM "districts" WHERE "name" LIKE "%(non-op)";
SELECT "name" FROM "districts" WHERE "name" LIKE "%(non-op)";

2
3.sql
View File

@@ -0,0 +1,2 @@
-- write a SQL query to find the average per-pupil expenditure. Name the column “Average District Per-Pupil Expenditure”.
SELECT AVG("per_pupil_expenditure") AS "Average District Per-Pupil Expenditure" FROM "expenditures";