The $IFNULL function tests to see if the first expression produces a NULL, and if so, returns the second expression.
This function returns the same datatype as the passed parameter. If all passed parameters are NULL, then this function returns a NULL.
$IFNULL ( expression_1, expression_2 )
Required. An expression using SQL language that produces a value. A scalar expression is generally equivalent to a select item in the SQL SELECT statement, and can be a character expression, numeric expression or date expression.
> select $ifnull(name, 'Name not given') identifier from individuals; IDENTIFIER -------------------------------------------------- MS. MARY LEWIS MRS. ALICE R TOLLIVER MR. SIDNEY K TOLLIVER MRS. JENNIFER J HOPKINS MR. CHARLIE HOPKINS MS. KIMBERLY BLUE KATHLEEN TUCKER
See also: