DESC FUNCTION
The DESCRIBE FUNCTION command is used to view detailed information about a created function, including its name, parameters, return type, function body, and more.
Syntax
Parameter Description
| Parameter | Description |
|---|---|
DESC / DESCRIBE | Both are equivalent and can be used interchangeably |
EXTENDED | Optional. Retrieves extended information about the function, including comment, determinism, data access properties, owner, and creation time |
function_name | The name of the function. If the function resides in a specific schema, use the schema_name.function_name format |
