至于blob字段的存储,要根据不同数据库来定,有时还要根据编程语言来定。
可以通过dbms_lob来辅助查询:--创建测试表
create
table
tt1
(XXName
varchar2(20),ProductIDs
blob)
--向测试表中插入数据
insert
into
tt1
select
'a',to_blob('a001b002')
from
dual
--查询blob字段中含有'a001'的记录select
XXName
from
tt1
where
mod(dbms_lob.instr(ProductIDs,'a001'),2)=1
--删除测试表
drop
table
tt1
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)