SQL User Defined Functions External Functions Stored Procedures DDL Flashcards
ALTER FUNCTION
Modifies the properties of an existing user-defined or external function.
ALTER PROCEDURE
Modifies the properties for an existing stored procedure.
CREATE EXTERNAL FUNCTION
Creates a newexternal function.
CREATE FUNCTION
Creates a newUDF (user-defined function).
CREATE PROCEDURE
Creates a newstored procedure.
DESCRIBE FUNCTION
Describes the specified user-defined function (UDF) or external function, including the signature (i.e. arguments), return value, language, and body (i.e. definition).
DESCRIBE PROCEDURE
Describes the specified stored procedure, including the stored procedure’s signature (i.e. arguments), return value, language, and body (i.e. definition).
DROP FUNCTION
Removes the specified user-defined function (UDF) or external function from the current/specified schema.
DROP MATERIALIZED VIEW
Removes the specified materialized view from the current/specified schema.
DROP PROCEDURE
Removes the specified stored procedure from the current/specified schema.
SHOW EXTERNAL FUNCTIONS
Lists all the external functions created for your account.
SHOW PROCEDURES
Lists the stored procedures that you have privileges to access.
SHOW USER FUNCTIONS
Lists all user-defined functions (UDFs) for which you have access privileges.