How do you add a string to a column in SQL Server?
UPDATE [myTable] SET [myText]=\' \'+[myText]
That doesn\'t work:
The
UPDATE test SET a = CONCAT(a, "more text")