Coloque um valor específico para valores NULL em uma coluna MySQL
Use IFNULL() para encontrar e colocar um valor específico para valores NULL. Vamos primeiro criar uma tabela:
mysql> create table DemoTable1878
(
FirstName varchar(20)
);
Query OK, 0 rows affected (0.00 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable1878 values('Chris');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1878 values(NULL);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1878 values('David');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1878 values(NULL);
Query OK, 1 row affected (0.00 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select * from DemoTable1878;
Isso produzirá a seguinte saída:
+-----------+
| FirstName |
+-----------+
| Chris |
| NULL |
| David |
| NULL |
+-----------+
4 rows in set (0.00 sec)
Aqui está a consulta para trabalhar com IFNULL() :
mysql> select ifnull(FirstName,'Robert') from DemoTable1878;
Isso produzirá a seguinte saída:
+----------------------------+
| ifnull(FirstName,'Robert') |
+----------------------------+
| Chris |
| Robert |
| David |
| Robert |
+----------------------------+
4 rows in set (0.00 sec)