Użyj count(*)
:
select count(*) from train where "column" is NULL;
count()
z dowolnym innym argumentem zlicza wartości inne niż NULL, więc nie ma żadnych, jeśli "column"
jest NULL
.
Użyj count(*)
:
select count(*) from train where "column" is NULL;
count()
z dowolnym innym argumentem zlicza wartości inne niż NULL, więc nie ma żadnych, jeśli "column"
jest NULL
.