3 lines
146 B
SQL
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";
|