programming/sql

is null/is not null, in/not in

chanchand 2023. 1. 7. 04:03
반응형

where code is null

code가 null인 값

 

where code is not null

code가 null이 아닌 값

 

where [컬럼명] In ('[값]')

특정 값이 존재하는 경우

 

where [컬럼명] not in ('[값]')

특정 값이 존재하지 않는 경우

반응형