-- 재고가 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 |