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

SHOW TABLE FUNCTIONS



Shows the list of supported table functions currently.

Syntax

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

Example

SHOW TABLE_FUNCTIONS; +------------------------+ | name | +------------------------+ | numbers | | numbers_mt | | numbers_local | | fuse_snapshot | | fuse_segment | | fuse_block | | fuse_statistic | | clustering_information | | sync_crash_me | | async_crash_me | | infer_schema | +------------------------+

Showing the table functions begin with "number":

SHOW TABLE_FUNCTIONS LIKE 'number%'; +---------------+ | name | +---------------+ | numbers | | numbers_mt | | numbers_local | +---------------+

Showing the table functions begin with "number" with WHERE:

SHOW TABLE_FUNCTIONS WHERE name LIKE 'number%'; +---------------+ | name | +---------------+ | numbers | | numbers_mt | | numbers_local | +---------------+

Was this page helpful?