-------创建虚拟表
create global temporary table temp(
id int,
X blob
)
on commit delete rows;
2. 执行 将数据保存在本地临时表中
insert into temp select id,msg from msg_bak;
3.查询本地blob 类型数据
select X from temp
4. 当commit 后数据自动删除,解决查询远端bolo 类型的问题
-------创建虚拟表
create global temporary table temp(
id int,
X blob
)
on commit delete rows;
2. 执行 将数据保存在本地临时表中
insert into temp select id,msg from msg_bak;
3.查询本地blob 类型数据
select X from temp
4. 当commit 后数据自动删除,解决查询远端bolo 类型的问题