在text欄位尾部追加資料
問題描述:
表 tt 含欄位 name1 text 型別 name2 varchar型別 (值可能為 null),現要將 name2的值新增到 name1裡邊。
--示例資料
create table tb(name1 text,name2 varchar(20))
insert tb select 'aa','dd'
union all select 'bb','cc'
go --處理
declare @p binary(16),@name2 varchar(200)
declare tb cursor local
for
select textptr(name1),name2
from tb
open tb
fetch tb into @p,@name2
while @@fetch_status=0
begin
updatetext tb.name1 @p null 0 @name2
fetch tb into @p,@name2
end
close tb
deallocate tb
select * from tb
go --刪除測試
drop table tb
/*--結果
name1 name2
------- --------
aadd dd
bbcc cc
(所影響的行數為 2 行)
--*/
原帖位址
在Text欄位尾部追加資料
在text欄位尾部追加資料 問題描述 表 tt 含欄位 name1 text 型別 name2 varchar型別 值可能為 null 現要將 name2的值新增到 name1裡邊。示例資料 create table tb name1 text,name2 varchar 20 insert tb ...
在Text欄位尾部追加資料
在text欄位尾部追加資料 問題描述 表 tt 含欄位 name1 text 型別 name2 varchar型別 值可能為 null 現要將 name2的值新增到 name1裡邊。示例資料 create table tb name1 text,name2 varchar 20 insert tb ...
handsontable 追加資料
之後決定選擇其他的框架來做 搜尋發現 handsontable 比較合適,追加資料時渲染速度很快,追加 500條資料用時在 200ms 之內。handsontable 的官網 handsontable 追加資料主要使用的方法是 getsourcedata 下面附上測試 testhandsontabl...