snowflake.snowpark.functions.call_udf¶
- snowflake.snowpark.functions.call_udf(udf_name: str, *args: ColumnOrLiteral) Column[source]¶
Calls a user-defined function (UDF) by name.
- Parameters:
udf_name – The name of UDF in Snowflake.
args –
Arguments can be in two types:
Column, orBasic Python types, which are converted to Snowpark literals.
- Example::