以前寫過:
這次增加了大寫字母的處理。
delimiter $$
use `t_girl`$$
drop function if exists `func_rand_string`$$
create definer=`root`@`localhost` function `func_rand_string`(f_num tinyint unsigned,f_type tinyint unsigned) returns varchar(32) charset utf8
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(65+32*(ceil(rand()*2)-1)+ceil(rand()*25)));
elseif f_type=2 then
set v_result = concat(v_result,ceil(rand()*9));
elseif f_type=3 then
if (ceil(rand()*2)-1) = 1 then
set v_result = concat(v_result,substring(replace(uuid(),'-',''),i+1,1));
else
set v_result = concat(v_result,upper(substring(replace(uuid(),'-',''),i+1,1)));
end if;
end if;
set i = i + 1;
end while;
return v_result;
end$$
delimiter ;
呼叫方法類似。
生成隨機密碼
編寫乙個函式,用於生成隨機密碼,入參為隨機密碼的長度,出參為生成的隨機密碼,要求生成的隨機密碼必須同時包含大寫字母小寫字母數字。生成隨機碼,引數為隨機碼長度,同時包含大小寫字母和數字 public string getrandomnum int length listlist new arrayli...
php生成隨機密碼
隨機密碼生成 post number 0 數字 0 不啟用 1 啟用 post lowercase 0 小寫字母 post uppercase 0 大寫字母 post punctuation 1 特殊符號 post repeat 0 字元 1重複 0不重複 post length 31 密碼長度 p...
PowerShell生成隨機密碼
需求是這樣的,給員工重置密碼,密碼要是隨機的,但是0和o i和i這些不要,防止誤殺。我用的方法是這樣的,這是c 中web的乙個方法,很給力。assembly add type assemblyname system.web global passwordrandom system.web.secur...