用sql操作oracle的blob字段
1、查询
select utl_raw.cast_to_varchar2(dlob),id from system.t_htinfo
2、插入
insert into system.t_htinfo values ('3',utl_raw.cast_to_raw('你'));
3、更新
update system.t_htinfo set fld_value=utl_raw.cast_to_raw('1') where fh_nm=1820648 and form_index=52
本文介绍了如何使用SQL语句操作Oracle数据库中的BLOB字段,包括查询、插入和更新等基本操作。
272

被折叠的 条评论
为什么被折叠?



