服务器之家

服务器之家 > 正文

MySQL 随机密码生成代码

时间:2019-11-01 14:41     来源/作者:mysql教程网

代码如下:


DELIMITER $$ 

CREATE 
FUNCTION `t_girl` . `func_rand_string` ( f_num tinyint unsigned , f_type tinyint unsigned ) 
RETURNS varchar ( 32) 
BEGIN 
-- Translate the number to letter. 
-- No 1 stands for string only. 
-- No 2 stands for number only. 
-- No 3 stands for combination of the above. 
declare i int unsigned default 0; 
declare v_result varchar ( 255) default '' ; 
while i < f_num do 
if f_type = 1 then 
set v_result = concat ( v_result, char ( 97+ ceil( rand ( ) * 25) ) ) ; 
elseif f_type= 2 then 
set v_result = concat ( v_result, char ( 48+ ceil( rand ( ) * 9) ) ) ; 
elseif f_type= 3 then 
set v_result = concat ( v_result, substring ( replace ( uuid ( ) , '-' , '' ) , i+ 1, 1) ) ; 
end if; 
set i = i + 1; 
end while; 
return v_result; 

END $ $ 

DELIMITER ; 


调用方法示例: 

复制代码代码如下:


select func_rand_string(12,3); 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部