Files
doris/docs/documentation/cn/sql-reference/sql-statements/Data Definition/drop-function.md
xy720 4c2a3d6da4 Merge Help document to documentation (#1586)
Help document collation (integration of help and documentation documents)
2019-08-07 21:31:53 +08:00

409 B

DROP FUNCTION

description

Syntax

DROP FUNCTION function_name
    (arg_type [, ...])

Parameters

function_name: 要删除函数的名字

arg_type: 要删除函数的参数列表

删除一个自定义函数。函数的名字、参数类型完全一致才能够被删除

example

  1. 删除掉一个函数
DROP FUNCTION my_add(INT, INT)

##keyword DROP,FUNCTION