Skip to main content

SHOW FUNCTIONS

Show all or specific user-defined functions (UDF) by using parameters.

Syntax
SHOW FUNCTIONS [ LIKE ]

Parameters

{{< sql-section file="data/sql/functions.json" data="showingFunctionsParameters" >}}

Examples

Show all existing functions
SHOW FUNCTIONS
Show an existing function with the exact name protect_ssn
SHOW FUNCTIONS LIKE 'protect_ssn'
Show all existing functions with names that start with protect_
SHOW FUNCTIONS LIKE 'protect_%'