UPDATETEXT的舉例用法

2021-04-07 06:17:23 字數 670 閱讀 6782

update *** set yyy=yyy+'zzzzz'

這樣寫不對,怎麼樣才能在更新時,儲存原來的ntext型的資料,並追加新的資料?

updatetext

更新現有 text、ntext 或 image 字段。使用 updatetext 在適當的位置更改 text、ntext 或 image 列的一部分。使用 writetext 來更新和替換整個 text、ntext 或 image 字段。

語法updatetext

[ with log ]

[ inserted_data

| ]

create table #

(txt ntext

)insert # select 'abcdefghijk'

--測試

declare @t binary(16)

select @t=textptr(txt) from #

updatetext #.txt @t null null '新資料'

select * from #

--刪除測試環境

drop table #

--結果

/*txt                   

--------------------

abcdefghijk新資料

*/

toPlainString 的用法舉例

分享一下我老師大神的人工智慧教程。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智慧的隊伍中來!給乙個字串1.238761976e 10 如何得到0.0000000001238761976這個字串呢?我就是想和大家分享一下,誰先到先得分。bigdecimal bd new bigde...

C placement new 用法舉例

在處理記憶體分配的時候,c 程式設計師會用 new 操作符 operator new 來分配記憶體,並用 delete 操作符 operator delete 來釋放記憶體。這是乙個 new 操作符的例子。class ctest 分配乙個物件 ctest ptest new test 分配乙個有十個...

Struts nested nest 用法舉例

用法舉例 formbean定義 public class personform extends actionform public person getperson public void setperson person person person類 public class person pub...