IF
Execute code based on conditions. This control flow statement runs different blocks of SQL statements depending on whether a specified condition is true.
Syntax
IF search_condition THEN statement_list
[ELSEIF search_condition THEN statement_list] ...
[ELSE statement_list]
END IF;Description
See Also
Last updated
Was this helpful?

