IFNULL
The IFNULL function is used to return the first non-null value among the provided expressions. It takes two arguments and checks if the first argument is NULL. If the first argument is NULL, it returns the second argument; otherwise, it returns the first argument.
Syntax
IFNULL(expression1, expression2)
Examples
Consider the following SingleItem table:
CREATE TABLE SingleItem (
    id INTEGER NULL,
    int8 INT8 NULL,
    dec DECIMAL NULL,
    dt DATE NULL,
    mystring TEXT NULL,
    mybool BOOLEAN NULL,
    myfloat FLOAT NULL,
    mytime TIME NULL,
    mytimestamp TIMESTAMP NULL
);
Insert two records into the SingleItem table:
INSERT INTO SingleItem VALUES (0, 1, 2, '2022-05-23', 'this is a string', true, 3.15, '01:02:03', '1970-01-01 00:00:00 -00:00');
INSERT INTO SingleItem VALUES (null, null, null, null, null, null, null, null, null);
Example 1: Using IFNULL with integer values:
SELECT IFNULL(id, 1) AS myid, IFNULL(int8, 2) AS int8, IFNULL(dec, 3)
FROM SingleItem WHERE id IS NOT NULL;
Example 2: Using IFNULL with date and text values:
SELECT IFNULL(dt, '2000-01-01') AS mydate, IFNULL(mystring, 'blah') AS name
FROM SingleItem WHERE id IS NOT NULL;
Example 3: Using IFNULL with boolean and float values:
SELECT IFNULL(mybool, 'YES') AS mybool, IFNULL(myfloat, 'NO') AS myfloat
FROM SingleItem WHERE id IS NOT NULL;
Example 4: Using IFNULL with time and timestamp values:
SELECT IFNULL(mytime, 'YES') AS mybool, IFNULL(mytimestamp, 'NO') AS myfloat
FROM SingleItem WHERE id IS NOT NULL;