IF (Snowflake Scripting)¶
An IF
statement provides a way to execute a set of statements if a condition is met.
For more information on branching constructs, see Working with conditional logic.
Note
This Snowflake Scripting construct is valid only within a Snowflake Scripting block.
Syntax¶
IF ( <condition> ) THEN
<statement>;
[ <statement>; ... ]
[
ELSEIF ( <condition> ) THEN
<statement>;
[ <statement>; ... ]
]
[
ELSE
<statement>;
[ <statement>; ... ]
]
END IF;
Where:
Usage notes¶
The keyword
THEN
is required.ELSEIF
is one word (no spaces).END IF
is two words.After each
THEN
orELSE
clause, the body allows theBEGIN
andEND
keywords, but does not require them, even if the body contains more than onestatement
.If the
condition
is NULL, then it is treated as FALSE.
Examples¶
Here is an example of a Snowflake Scripting IF
statement inside a stored procedure:
CREATE or replace PROCEDURE example_if(flag INTEGER)
RETURNS VARCHAR
LANGUAGE SQL
AS
$$
BEGIN
IF (FLAG = 1) THEN
RETURN 'one';
ELSEIF (FLAG = 2) THEN
RETURN 'two';
ELSE
RETURN 'Unexpected input.';
END IF;
END;
$$
;
Here is the command to call the stored procedure, along with the output:
CALL example_if(3);
+-------------------+
| EXAMPLE_IF |
|-------------------|
| Unexpected input. |
+-------------------+