Is there any way with T-SQL to append to a text field?
Thanks,
Ryan
Ryan Langton - 15 Feb 2006 20:04 GMT
Nevermind it is simple.
"UPDATE table.field SET field = field + N'Appended Text' WHERE <condition>"
> Is there any way with T-SQL to append to a text field?
>
> Thanks,
> Ryan
Philipp Stiefel - 15 Feb 2006 20:08 GMT
> Is there any way with T-SQL to append to a text field?
Yes, have a look at the TEXTPTR function and the UPDATETEXT
command.
HTH
Phil