MySQL database focus: Process Control statements, custom functions, stored procedures, triggers, events, views

Source: Internet
Author: User

I. Process Control statements

1. Branch structure

If branch:

IF condition 1 Then statement;
ELSEIF condition 2 Then statement;

......
ELSE statement;
END IF;

Case Branch:

case [Condition]
When condition 1 Then statement 1
When condition 2 Then statement 2

......
ELSE Statement N
END case

2. Cyclic structure

Loop loop:

[Begin_label:] LOOP
Statement Group
END LOOP [End_label]

While statement:

[Begin_label:] While condition do
Statement Group
END while [End_label]

REPEAT until statement:

[Begin_label:] REPEAT
Statement Group
UNTIL conditions
END REPEAT [End_label]

Iterate statement: Iterate can only appear within loops, REPEAT, and while statements. Iterate means: "Cycle again." "will return to the label start position again

Iterate label

Leave statement: This statement is used to exit any annotated process control constructs. It and begin ...  End or loop is used together. Break as in other languages
LEAVE Label

Ii.. Custom Functions

MySQL database focus: Process Control statements, custom functions, stored procedures, triggers, events, views

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.