What is the best way to append to a text field using t-sql in Sql Server 2005?
With a varchar I would do this.
update tablename set fieldname = fieldname + 'appended string'
But this doesn't work with a text field.
|
|
What is the best way to append to a text field using t-sql in Sql Server 2005? With a varchar I would do this.
But this doesn't work with a text field.
|
||||
|
|
|
Try this:
|
||||
|
|
|
in 2005 you should use varchar(max) or nvarchar(max) these columns will work with normal varchar functions. Text and ntext have been deprecated |
||
|
|
|
|
|
||
|