다음 SQL 문장 중 column1의 값이 널(null value)값인 경우를 찾아내는 문장은?
select * from ssTable where column1 is null;
select * from ssTable where column1 = null;
select * from ssTable where column1 EQUALS null;
select * from ssTable where column1 not null;
풀이가 아직 준비되지 않았어요