This is from the SQL Reference book:

IFNULL

IFNULL ( expression , expression ) 

The IFNULL function is identical to the COALESCE scalar function with two
arguments. For more information, see "COALESCE" on page 152.
Example
When selecting the employee number (EMPNO) and salary (SALARY) from all the
rows in the EMPLOYEE table, if the salary is missing (that is, null), then
return a value of zero.
SELECT EMPNO, IFNULL(SALARY,0)
FROM EMPLOYEE 

Elvis



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.