long类型字段a,直接update t set a='xx' where id=1时,如果字符串长度超过4000会报错
解决方法:
declare
str long := 'xxx';
begin
update t a = str where id=1;
end;
long类型字段a,直接update t set a='xx' where id=1时,如果字符串长度超过4000会报错
解决方法:
declare
str long := 'xxx';
begin
update t a = str where id=1;
end;