包含blob数据列的表

来源:互联网 发布:java 参数不能传null 编辑:程序博客网 时间:2024/06/08 02:51

包含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;

这里写图片描述

原创粉丝点击