Hi Everyone,
As we all know how we Coalesce() function in SQL, it returns the first non-null value in a list.
For example : If we run the below query, will get the results as StatureStack.com
SELECT COALESCE(NULL, NULL, NULL, 'StatureStack.com', NULL, 'mscrmtechie.blogspot.com');
In simple words, it just returns whatever the first non-null value.
In the same way, we can use Coalecse
↧