Use the IS NULL and IS NOT NULL operators : Null « Data Type « SQL / MySQL






Use the IS NULL and IS NOT NULL operators

   
/*
mysql> SELECT 1 IS NULL, 1 IS NOT NULL;
+-----------+---------------+
| 1 IS NULL | 1 IS NOT NULL |
+-----------+---------------+
|         0 |             1 |
+-----------+---------------+
1 row in set (0.00 sec)


*/  
SELECT 1 IS NULL, 1 IS NOT NULL;
           
         
    
    
  








Related examples in the same category

1.Retrieve NULL value
2.Concatenate string with NULL value
3.Working with NULL Values
4.NULL means 'not having a value'
5.Disallowing NULLs
6.Retrieve NOT NULL value
7.List NOT NULL value and order it
8.Select NOT NULL value
9.IS NOT NULL in where clause
10.NULL value in where clause
11.Read NULL value
12.Dealing With NULL Data
13.An important one to note; the result is not 0 (false), it's NULL
14.To evaluate NULL rows
15.NULL is basically a third possible result of an evaluation: There's true, false, and then there's NULL.
16.Use the IS NULL (or IS NOT NULL) comparison instead
17.Assuming that NULL values sort ahead of all non-NULL values
18.Passing a NULL value to a function results in a NULL return value.
19.Set value to null
20.What is the result of the calculation 10 divided by 0?
21.If the value of an expression cannot be determined, the result is NULL: