MySQL COALESCE Function

Summary: this tutorial introduces you to the MySQL COALESCE function that allows you to substitute NULL values. Introduction to MySQL COALESCE function The following illustrates the COALESCE function syntax: [crayon-5897278041ff1597035468/] The COALESCE function takes a number of arguments and returns the first non-NULL argument. In case all arguments are NULL, the COALESCE function returns NULL. […]

The post MySQL COALESCE Function appeared first on MySQL Tutorial.

via MySQL Tutorial
MySQL COALESCE Function