in reply to Appending text to a column in SQL
Something like this:
Not exactly elegant, but it works.DECLARE @ptrval binary(16) SELECT @ptrval = TEXTPTR(item) FROM table WHERE whatever criteria UPDATETEXT table.item @ptrval NULL 0 'new text';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Appending text to a column in SQL
by sgifford (Prior) on Oct 18, 2006 at 03:17 UTC | |
by imp (Priest) on Oct 18, 2006 at 03:26 UTC | |
by sgifford (Prior) on Nov 01, 2006 at 17:42 UTC | |
by Anonymous Monk on May 27, 2008 at 17:14 UTC |