Files
me50/2.sql

3 lines
141 B
SQL

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