包含clob数据列的表
测试数据

create table  clob_table(
id number,
clob_column clob not null
);


--添加数据
--to_clob 将字符数据转换为clob类型
insert into clob_table values(1,to_clob('this is clob data'));
select * from clob_table;
--修改数据
update clob_table set clob_column=to_clob('这是clob数据') where id=1;
select * from clob_table;
--删除数据
delete clob_table where  id=1;
select * from clob_table;

这里写图片描述

posted on 2017-06-03 14:14  2637282556  阅读(93)  评论(0编辑  收藏  举报