다음 SQL 문장 중 column1의 값이 널 값(Null Value) 인 경우를 검색하는 문장은?
문제풀이 모드
0
정답률 : -
다음 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;
채점하기