I både Postgres och SQL-server,
SELECT * FROM tab WHERE is_visible is null;
Om du vill välja raderna för vilka kolumnvärdena inte är null, använd is not null
operatör:
SELECT * FROM tab WHERE is_visible is not null;
I både Postgres och SQL-server,
SELECT * FROM tab WHERE is_visible is null;
Om du vill välja raderna för vilka kolumnvärdena inte är null, använd is not null
operatör:
SELECT * FROM tab WHERE is_visible is not null;