我正在使用Oracle 11g。它有一个模式,模式有详细信息表。
DETAILS table has 10 columns.但我的要求是,我希望通过调用、Oracle、MD5、哈希函数来获得基于3列值的哈希码。
有可能吗?
谢谢!
发布于 2014-03-20 22:52:36
如果尚未完成,则需要:将dbms_crypto上的执行授予
SYS.dbms_crypto.hash(SYS.utl_raw.cast_to_raw( column1 || column2 || column3 ), <hashtype>)
--Where hashtype is integer:
-- 1 = MD4
-- 2 = MD5
-- 3 = SHA1https://stackoverflow.com/questions/22525435
复制相似问题