3 lines
141 B
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)";
|