Aug 21 2024 07:43 PM - edited Aug 21 2024 08:02 PM
We are on Sybase ASE and are in the processing migrating to MS SQL Server.
In Sybase ASE
select null + 'DBMS' ==> DBMS
In MS SQL Server (with SSMS)
In SSMS QUERY Options has by default "CONCAT_NULL_YIELDS_NULL" set to ON.
select null + 'DBMS' ==> NULL
Thanks for your help!
Aug 28 2024 02:18 AM
SolutionAug 28 2024 02:18 AM
Solution