求助oracle高手,将varchar类型数据插入到blob类型字段中

2024年12月03日 08:33
有2个网友回答
网友(1):

to_Blob(rawtohex(字段名)) 将字段名转为16进制数字再插入到blob字段

网友(2):

使用to_blob函数即可
insert into table2 select pk,to_blob(value) from table1;

如果varchar2和blob存在base64的转换关系则可用到utl_encode.base64_encode及decode函数。