When SET CONCAT_NULL_YIELDS_NULL is ON, concatenating a null value with a string yields a NULL result.
For example,
SELECT ‘abc’ + NULL == NULL.
When SET CONCAT_NULL_YIELDS_NULL is OFF, concatenating a null value with a string yields the string itself (the null value is treated as an empty string).
For example,
SELECT ‘abc’ + NULL == abc.
Tags: Transact-SQL
sorry but i don’t know what you talking about here. hehehe
No worry. Take time to learn lo.
what is the workarond, if this setting cant be implemented at database level and ISNULL(abc,’NULL’) will require many code change ?