Files
me50/2.sql
2026-04-23 15:29:19 +02:00

3 lines
146 B
SQL

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