For Example
- SELECT CONCAT('Naveen',' Aggarwal')
The same can be done using + in the earlier versions
- SELECT 'Naveen'+' Aggarwal'
But there is a advantage of CONCAT function over '+' in sql server 2012
- SELECT 'Naveen'+' Aggarwal'+NULL
But the CONCAT function will ignore NULL values
- SELECT CONCAT('Naveen',' Aggarwal',NULL)
So by using CONCAT function,we need not to worry about handling NULL values.
I hope u like it.

Naveen KumarPosted Apr 20, 2015, 1:15 AM
thanks Gowtham Rajamanickam
Naveen KumarPosted Apr 20, 2015, 1:14 AM
thanks Nitin Tyagi
Gowtham RajamanickamPosted Apr 19, 2015, 12:05 AM
Good one
NitinPosted Apr 12, 2015, 4:23 PM
nice