snowflake.snowpark.functions.call_function¶
- snowflake.snowpark.functions.call_function(function_name: str, *args: ColumnOrLiteral) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.4.0/src/snowflake/snowpark/functions.py#L6566-L6589)¶
Invokes a Snowflake system-defined function (built-in function) with the specified name and arguments.
- Parameters:
function_name – The name of built-in function in Snowflake
args –
Arguments can be in two types:
Column, orBasic Python types, which are converted to Snowpark literals.
- Example::