- Oracle version : 12.1.0.2.0
- SQL Server version : 2012
My code:
select COALESCE (null, '')
from dual
in Oracle returns null
result, but
select COALESCE (null, '')
in SQL Server returns a ''
result.
Why did this result differ?
They are ANSI standards, shouldn't it be the same?