IS NULL
IS NULL 명령은 빈 값(NULL 값)을 테스트하는 데 사용된다.
예제
“주소” 필드에 NULL 값이 있는 모든 고객을 나열한다.
SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NULL;
⭐ NULL 값은 0 값이나 공백이 포함된 필드와 다르다. NULL 값이 있는 필드는 레코드 생성 중에 비어 있는 필드다.
⭐ NULL 값을 찾으려면 항상 IS NULL을 사용하자.
기본 예시
CustomerName | ContactName | Address |
---|---|---|
Exotic Liquid | null | null |
New Orleans Cajun Delights | null | null |
Grandma Kelly’s Homestead | null | null |
Tokyo Traders | null | null |
Cooperativa de Quesos ‘Las Cabras’ | null | null |
Mayumi’s | null | null |
Pavlova, Ltd. | null | null |
Specialty Biscuits, Ltd. | null | null |
PB Knäckebröd AB | null | null |
Refrescos Americanas LTDA | null | null |
Heli Süßwaren GmbH & Co. KG | null | null |
Plutzer Lebensmittelgroßmärkte AG | null | null |
Nord-Ost-Fisch Handelsgesellschaft mbH | null | null |
Formaggi Fortini s.r.l. | null | null |
Norske Meierier | null | null |
Bigfoot Breweries | null | null |
Svensk Sjöföda AB | null | null |
Aux joyeux ecclésiastiques | null | null |
New England Seafood Cannery | null | null |
Leka Trading | null | null |
Lyngbysild | null | null |
Zaanse Snoepfabriek | null | null |
Karkki Oy | null | null |
G’day, Mate | null | null |
Ma Maison | null | null |
Pasta Buttini s.r.l. | null | null |
Escargots Nouveaux | null | null |
Gai pâturage | null | null |
Forêts d’érables | null | null |
참고
W3C School - SQL IS NULL Keywords
W3C School - SQL Tutorial