3 lines
145 B
SQL
3 lines
145 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" IS NULL;
|