Dette vil vælge alle rækker hvor some_col
er NULL
eller ''
(tom streng)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
Dette vil vælge alle rækker hvor some_col
er NULL
eller ''
(tom streng)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';