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

create table blob_table(
id number,
blob_column blob not null
);

--添加数据
--to_blob 将字符数据转换为blob类型
insert into blob_table values(1,to_blob('1111111111'));
select * from blob_table;
--修改数据
update blob_table set blob_column=to_blob('10000001') where id=1;
select * from blob_table;
--删除数据
delete blob_table where  id=1;
select * from blob_table;

这里写图片描述

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