Mysql generates random string function sharing _mysql

Source: Internet
Author: User

Copy Code code as follows:

Set global log_bin_trust_function_creators = 1;
DROP FUNCTION IF EXISTS rand_string;
DELIMITER $$
CREATE FUNCTION rand_string (n INT)
RETURNS VARCHAR (255)
BEGIN
DECLARE chars_str varchar () DEFAULT ' abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ';
DECLARE return_str varchar (255) DEFAULT ";
DECLARE i INT DEFAULT 0;
While I < n do
SET return_str = concat (return_str,substring (Chars_str, FLOOR (1 + RAND () *62), 1));
SET i = i +1;
End while;
return return_str;
End $$
DELIMITER;

After testing, the function is created to bind to the current database, and the following statement can view information about the function.

Copy Code code as follows:

Show FUNCTION STATUS WHERE db= ' database_name ';

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.