gpt4 book ai didi

sap-ase - 我需要 Sybase 数据类型来保存不确定长度的字符串。

转载 作者:行者123 更新时间:2023-12-05 00:31:16 25 4
gpt4 key购买 nike

我的要求是声明一个接受最大大小的 xml 值的数据类型。
问题:我们在 Sybase 中有 text、xml 或 varchar(max) 数据类型吗?

最佳答案

有文本数据类型。您可以找到更多信息 here .

如何使用它的程序:

create procedure settxt
(
@txt text
)
as
begin
select @txt
end

如何运行该程序:
declare @txt  text
select @txt = 'Hello world'
execute settxt @txt

该代码适用于我,但可能不适用于所有人。

这是临时表的解决方案:
create table #texttab
(
txt varchar(100)
)
go
insert into #texttab
values ('Hello ')

insert into #texttab
values (' wolrd!')
go
create procedure settxt
as
begin
declare @txt text,
@txtval varchar(100)

select @txt=' '

declare curTXT cursor for
select txt from #texttab


open curTXT
fetch curTXT into @txtval
while @@sqlstatus=0 begin
select @txtval
select @txt=@txt+@txtval
select @txt
fetch curTXT into @txtval
end
close curTXT
deallocate cursor curTXT

select @txt

end
go
execute settxt

关于sap-ase - 我需要 Sybase 数据类型来保存不确定长度的字符串。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15071829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com