首页 > 数据库 > MySQL > 正文

MySQL 随机密码生成代码

2024-07-24 12:43:51
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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);

您可能感兴趣的文章:

mysql中为用户设置密码的多种方法MYSQL 修改root密码命令小结mysql误删root用户或者忘记root密码解决方法MySQL 密码设置MySQL忘记密码恢复密码的实现方法mysql忘记密码的解决方法MySQL修改密码方法总结忘记Mysql的密码的处理办法mysql密码忘记的修改方法mysql密码过期导致连接不上mysql
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表