IS NULL
カラムの値が NULL
のレコードを選択する。
select * from users where age is null;
参考:
IS NULL句 – 値が NULL のものを取得 | DBOnline
IS NULL Condition | Tech On The Net
IS NOT NULL
カラムの値が NULL
ではないレコードを選択する。
select * from users where age is not null;
参考:
カラムの値が NULL
のレコードを選択する。
select * from users where age is null;
参考:
IS NULL句 – 値が NULL のものを取得 | DBOnline
IS NULL Condition | Tech On The Net
カラムの値が NULL
ではないレコードを選択する。
select * from users where age is not null;
参考: