snowflake.snowpark.functions.iff¶
- snowflake.snowpark.functions.iff(condition: ColumnOrSqlExpr, expr1: ColumnOrLiteral, expr2: ColumnOrLiteral) Column [source]¶
Returns one of two specified expressions, depending on a condition. This is equivalent to an
if-then-else
expression.- Parameters:
condition – A
Column
expression or SQL text representing the specified condition.expr1 – A
Column
expression or a literal value, which will be returned ifcondition
is true.expr2 – A
Column
expression or a literal value, which will be returned ifcondition
is false.