Some RDBMSs provide an IFNULL()
function that can be used when dealing with potentially null values. In particular, MySQL, MariaDB, and SQLite each have an IFNULL()
function that replaces any null values with another value.
Other RDBMSs, such as SQL Server, Oracle, and PostgreSQL provide similar functionality via functions of a different name.
Continue reading