to_Blob(rawtohex(字段名)) 将字段名转为16进制数字再插入到blob字段
使用to_blob函数即可insert into table2 select pk,to_blob(value) from table1;如果varchar2和blob存在base64的转换关系则可用到utl_encode.base64_encode及decode函数。