如何把bigint转换为varchar
1个回答
展开全部
LONG类型列不能用大部分SQL函数。。建议ORACLE别用LONG
转换可以INSERT 方法:
含有LONG的表table_with_long
需要创建个有CHAR的表:table_with_varchar
begin
for cv in ( select col_long from table_with_long)
loop
if instr(cv.col_long,'key_word') > 0 then
insert into table_with_varchar(col_varchar) values (cv.col_long);
end if;
end loop;
end;
补充:
加上commit。。。。
转换可以INSERT 方法:
含有LONG的表table_with_long
需要创建个有CHAR的表:table_with_varchar
begin
for cv in ( select col_long from table_with_long)
loop
if instr(cv.col_long,'key_word') > 0 then
insert into table_with_varchar(col_varchar) values (cv.col_long);
end if;
end loop;
end;
补充:
加上commit。。。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询