snowflake.snowpark.functions.call_table_function¶
- snowflake.snowpark.functions.call_table_function(function_name: str, *args: ColumnOrLiteral, **kwargs: ColumnOrLiteral) TableFunctionCall[source]¶
Invokes a Snowflake table function, including system-defined table functions and user-defined table functions.
It returns a
TableFunctionCall()so you can specify the partition clause.- Parameters:
function_name – The name of the table function.
args – The positional arguments of the table function.
**kwargs – The named arguments of the table function. Some table functions (e.g.,
flatten) have named arguments instead of positional ones.
- Example::