Files
me50/3.sql
2026-04-15 10:23:57 +02:00

3 lines
146 B
SQL

-- write a SQL query to find the ids of rows for which a value in the column debut is missing.
SELECT "id" FROM "players" WHERE "debut" = "NULL";