IF
You are viewing an old version of this article. View
the current version here.
Syntax
IF search_condition THEN statement_list
[ELSEIF search_condition THEN statement_list] ...
[ELSE statement_list]
END IF;
Description
IF implements a basic conditional construct. If the search_condition
evaluates to true, the corresponding SQL statement list is executed.
If no search_condition matches, the statement list in the ELSE clause
is executed. Each statement_list consists of one or more statements.
See also
There is also an IF() function, which differs from the IF statement described above.
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.