Calling Functions and Stored Procedures in Snowpark Python - Snowflake Documentation
Calling Functions and Stored Procedures in Snowpark Python - Snowflake Documentation
If a system-defined SQL function is not available in the functions module, you can
use one of the following approaches:
Use the call_function function to call the system-defined function.
Use the function function to create a function object that you can use to call
the system-defined function.
call_function and function are defined in the snowflake.snowpark.functions
module.
For call_function , pass the name of the system-defined function as the first
argument. If you need to pass the values of columns to the system-defined
function, define and pass Column objects as additional arguments to the
call_function function.
The following example calls the system-defined function RADIANS passing in the
https://docs.snowflake.com/en/developer-guide/snowpark/python/calling-functions 1/1