V Postgres i SQL serveru
SELECT * FROM tab WHERE is_visible is null;
Pokud chcete vybrat řádky, pro které nejsou hodnoty sloupců null, použijte is not null
operátor:
SELECT * FROM tab WHERE is_visible is not null;
V Postgres i SQL serveru
SELECT * FROM tab WHERE is_visible is null;
Pokud chcete vybrat řádky, pro které nejsou hodnoty sloupců null, použijte is not null
operátor:
SELECT * FROM tab WHERE is_visible is not null;