To evaluate NULL rows : Null « Data Type « SQL / MySQL






To evaluate NULL rows

       
mysql>
mysql> SELECT NULL<=>0;
+----------+
| NULL<=>0 |
+----------+
|        0 |
+----------+
1 row in set (0.00 sec)

mysql>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Retrieve NULL value
2.Concatenate string with NULL value
3.Working with NULL Values
4.Use the IS NULL and IS NOT NULL operators
5.NULL means 'not having a value'
6.Disallowing NULLs
7.Retrieve NOT NULL value
8.List NOT NULL value and order it
9.Select NOT NULL value
10.IS NOT NULL in where clause
11.NULL value in where clause
12.Read NULL value
13.Dealing With NULL Data
14.An important one to note; the result is not 0 (false), it's NULL
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: