MySQL Random password Generation code _MYSQL

Source: Internet
Author: User
Copy code code as follows:

DELIMITER $$

CREATE
FUNCTION ' T_girl '. ' Func_rand_string ' (f_num tinyint unsigned, f_type tinyint)
RETURNS varchar (32)
BEGIN
--Translate the number to letter.
--No 1 stands for string.
--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;

Invoke Method Example:
Copy Code code as follows:

Select Func_rand_string (12,3);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.