SQL NULL Functions

Hàm MySQL IFNULL () cho phép bạn trả về một giá trị thay thế nếu một biểu thức là NULL:

mysql> SELECT IFNULL(addressLine2,'Hihi'), addressLine2 from customers;
+-----------------------------+--------------------------+
| IFNULL(addressLine2,'Hihi') | addressLine2             |
+-----------------------------+--------------------------+
| Hihi                        | NULL                     |
| Hihi                        | NULL                     |
| Level 3                     | Level 3                  |
| Hihi                        | NULL                     |
+-----------------------------+--------------------------+

Last updated