Zarówno na serwerze Postgres, jak i SQL,
SELECT * FROM tab WHERE is_visible is null;
Jeśli chcesz wybrać wiersze, dla których wartości kolumn nie są null, użyj is not null
operator:
SELECT * FROM tab WHERE is_visible is not null;
Zarówno na serwerze Postgres, jak i SQL,
SELECT * FROM tab WHERE is_visible is null;
Jeśli chcesz wybrać wiersze, dla których wartości kolumn nie są null, użyj is not null
operator:
SELECT * FROM tab WHERE is_visible is not null;