Files
me50/7.sql
2026-04-27 16:16:07 +02:00

5 lines
310 B
SQL

-- write a SQL query to find the names of schools (public or charter!) in the Cambridge school district.
-- Keep in mind that Cambridge, the city, contains a few school districts, but DESE is interested in the
-- district whose name is “Cambridge.”
SELECT "name" FROM "schools" WHERE "city" = "Cambridge";