- Report Writing
Concatenation in TSQL is often handled using the + operator. However, using + for concatenation requires the coder to account for data types and NULLs. There’s also the CONCAT function (released with SQL Server 2012), and the CONCAT_WS function (released in 2017). Both offer advantages over the…