From 2f774d822e198d19218f2d57029511a92eade891 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Thu, 23 Apr 2026 15:29:19 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 2.sql | 2 +- 3.sql | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/2.sql b/2.sql index 1c853e8..7b0a4ca 100644 --- a/2.sql +++ b/2.sql @@ -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)"; diff --git a/3.sql b/3.sql index e69de29..bc2d051 100644 --- a/3.sql +++ b/3.sql @@ -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";