Answers for "ms sql tsql coalesce"

SQL
2

coalesce sql

Return the first non-null value in a list:

SELECT COALESCE(NULL, NULL, NULL, 'W3Schools.com', NULL, 'Example.com');

-- output: W3Schools.com
Posted by: Guest on January-11-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language