当前位置:网站首页>Oracle的md5
Oracle的md5
2022-07-02 03:27:00 【天天代码码天天】
CREATE OR REPLACE FUNCTION MD5(passwd IN VARCHAR2) RETURN VARCHAR2 IS
retval varchar2(32);
BEGIN
retval := utl_raw.cast_to_raw(DBMS_OBFUSCATION_TOOLKIT.MD5(INPUT_STRING => passwd));
RETURN retval;
END;测试
select md5('lw112190') from dual
边栏推荐
- venn圖取交集
- ORA-01547、ORA-01194、ORA-01110
- Mathematical calculation in real mode addressing
- Docker installs canal and MySQL for simple testing and implementation of redis and MySQL cache consistency
- ZABBIX API creates hosts in batches according to the host information in Excel files
- Exchange rate query interface
- What is hybrid web containers for SAP ui5
- [golang] leetcode intermediate bracket generation & Full Permutation
- [HCIA continuous update] working principle of OSPF Protocol
- ThreadLocal详解
猜你喜欢
随机推荐
Screenshot literacy tool download and use
Download and use of the super perfect screenshot tool snipaste
Intersection of Venn graph
PY3, PIP appears when installing the library, warning: ignoring invalid distribution -ip
32, 64, 128 bit system
[C Advanced] brother Peng takes you to play with strings and memory functions
The page in H5 shows hidden execution events
知物由学 | 自监督学习助力内容风控效果提升
How to establish its own NFT market platform in 2022
[HCIA continuous update] working principle of OSPF Protocol
Mathematical calculation in real mode addressing
"Analysis of 43 cases of MATLAB neural network": Chapter 41 implementation of customized neural network -- personalized modeling and Simulation of neural network
[JS reverse series] analysis of a customs publicity platform
Retrofit's callback hell is really vulnerable in kotlin synergy mode
Kotlin基础学习 14
Redis set command line operation (intersection, union and difference, random reading, etc.)
verilog 并行块实现
Just a few simple steps - start playing wechat applet
MSI announced that its motherboard products will cancel all paper accessories
Uniapp uses canvas to generate posters and save them locally









