between A and B
에서 A랑 B는 범위에 포함
is null(null 데이터 호출)
select *
from 테이블
where 컬럼_at is null;
not
not을 명령문에 섞어 명령의 부정 만들기
select *
from 테이블
where 컬럼 not 명령
a와b 사이 데이터 호출 between A and B A랑 B는 범위에 포함 is null select * from 테이블 where 컬럼_at is null; not select * from 테이블 where 컬럼 not 명령 |