Files
doris/docs/en/sql-reference/sql-statements/Data Manipulation/SHOW CREATE FUNCTION.md
Ting Sun 64fa305c06 [Doc] correct format errors in English doc (#5487)
Some formate errors in English doc.
They are very straightforward and should not break any existing build.
2021-03-11 22:34:54 +08:00

1.4 KiB

title, language
title language
SHOW CREATE FUNCTION en

SHOW CREATE FUNCTION

description

The statement is used to show the creation statement of user-defined function
grammar:
    SHOW CREATE FUNTION function_name(arg_type [, ...]) [FROM db_name]];
    
Description:
   `function_name`: the name of the function to be displayed
   `arg_type`: the parameter list of the function to be displayed
   If you do not specify db_name, use the current default db

example

1. Show the creation statement of the specified function under the default db
    SHOW CREATE FUNCTION my_add(INT, INT)

keyword

SHOW,CREATE,FUNCTION