📅  最后修改于: 2022-03-11 15:05:01.659000             🧑  作者: Mango
The COALESCE() function returns the first non-null value in a list.
Example : SELECT COALESCE(NULL, NULL, 'W3Schools.com', NULL, 'Example.com');
output : 'W3Schools.com'