| Function example which will returns the first non null expression from more then one column in SQL Query
Below is the query which will returns the first Non-null expression:-
Select COALESCE(firstcolumn, secondcolumn, thirdcolumn) from the table_name; | | |