A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.snowflake.com/sql-reference/sql/drop-function below:

DROP FUNCTION | Snowflake Documentation

Reference SQL command reference Functions, procedures, & scripting DROP FUNCTION DROP FUNCTION

Removes the specified user-defined function (UDF) or external function from the current/specified schema.

See also:

CREATE FUNCTION , ALTER FUNCTION , SHOW FUNCTIONS, DESCRIBE FUNCTION

Syntax
DROP FUNCTION [ IF EXISTS ] <name> ( [ <arg_data_type> , ... ] )

Copy

Parameters
name

Specifies the identifier for the UDF to drop. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.

arg_data_type [ , ... ]

Specifies the data type of the argument(s), if any, for the UDF. The argument types are necessary because UDFs support name overloading (i.e. two UDFs in the same schema can have the same name) and the argument types are used to identify the UDF you wish to drop.

Usage notes

All Languages

Java, Python, and Scala

Examples

This demonstrates the DROP FUNCTION command:

DROP FUNCTION multiply(number, number);

--------------------------------+
             status             |
--------------------------------+
 MULTIPLY successfully dropped. |
--------------------------------+

Copy


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4