📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

SHOW USER FUNCTIONS



Lists the existing user-defined functions and external functions in the system. Equivalent to SELECT name, is_aggregate, description, arguments, language FROM system.user_functions ....

See also: system.user_functions

Syntax

SHOW USER FUNCTIONS [LIKE '<pattern>' | WHERE <expr>] | [LIMIT <limit>]

Example

SHOW USER FUNCTIONS; ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐ │ name │ is_aggregate │ description │ arguments │ language │ ├────────────────┼───────────────────┼─────────────┼───────────────────────────────────────────────────────────┼──────────┤ │ binary_reverse │ NULL │ │ {"arg_types":["Binary NULL"],"return_type":"Binary NULL"} │ python │ │ echo │ NULL │ │ {"arg_types":["String NULL"],"return_type":"String NULL"} │ python │ │ isnotempty │ NULL │ │ {"parameters":["p"]} │ SQL │ └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

Was this page helpful?