Mysql uses small notes such as stored procedures and events [Mark] And mysqlmark

Source: Internet
Author: User

Mysql uses small notes such as stored procedures and events [Mark] And mysqlmark

Bytes ------------------------------------------------------------------------------------------------
[Create a stored procedure and use variables and random numbers]

DELIMITER $

Drop procedure if exists 'Week _ luck_call '$
Create procedure week_luck_call ()
Begin
DECLARE var_rankluck int default 99999; -- must be placed in the first row
Delete from rankluck;
Set var_rankluck = ROUND (RAND (), 5) * 100000 );
Insert into rankluck ('guid ', 'luck') select 'guid ', var_rankluck from ranklist order by value desc limit 100;
End $

DELIMITER;

Bytes ------------------------------------------------------------------------------------------------
[Create a mysql event, event trigger time, period, and so on]

Delimiter $

Create procedure week_luck_call ()
Begin
Delete from rankluck;
Insert into rankluck ('guid ', 'luck') select 'guid ', ROUND (RAND (), 5) * 100000) from ranklist order by value desc limit 100;
End $

Delimiter;

Drop procedure week_luck_call;

Create event week_luck on schedule every 1 week starts '2017-12-17 08:00:00 'on completion preserve do call week_luck_call ();

Drop event week_luck;

Related Article

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.