Which of the following describes external functions in Snowflake?
Which of the following describes external functions in Snowflake?
External functions in Snowflake are a type of User-defined Function (UDF). Unlike other UDFs that might contain their SQL code, external functions call code that is stored and executed outside of Snowflake. They enable you to perform operations with external services and integrate Snowflake with external processing systems.
A correct An external function is a type of UDF. Unlike other UDFs, an external function does not contain its own code; instead, the external function calls code that is stored and executed outside Snowflake
A https://docs.snowflake.com/en/sql-reference/external-functions-introduction.html
Correct