Does anyone know how I was going to concatenate a row in SQL Server 2005.
I mean something like the following scenario.
I have an nvarchar (MAX) column in a SQL Server 2005 database.
Let's say that the column has a value of “A” and I want to add “B”, which makes “AB”, which is the easiest way to do this. Do I need to make a selection, combine the two values in the code and then update the column? Or is there a better way to do this?
Any pointers are greatly appreciated.
source
share