COALESCE Function SQL
What is COALESCE Function in SQL The SQL coalesce function will gives the first non-null string. Syntax: coalesce (strng1, string2, string3 … stringn)Ex: select coalesce('a','b','c'), coalesce(null,'a',null,'b') from dual; coalesce('a','b','c') ----------------------…