본문 바로가기
MySQL

[MySQL] MySQL에서 값이 null인지 확인할때는 is null 사용

by dong_su 2023. 11. 30.
-- 재고가 null인 데이터 가져오기
select *
from books
where stock_quantity is null;

 

-- 재고가 null이 아닌 데이터 가져오기
select *
from books
where stock_quantity is not null;

 

where 컬럼명 = null (X)

where 컬럼명 is null (O)

'MySQL' 카테고리의 다른 글

[MySQL] if() 함수 작성법  (0) 2023.11.30
[MySQL] case문 작성법  (0) 2023.11.30
[MySQL] Group by에서 Having을 사용하는 방법  (0) 2023.11.30
[MySQL] Sub Query 사용법  (0) 2023.11.29
[MySQL] group by 사용법  (0) 2023.11.29