ALTER FUNCTION
Section: SQL Commands (7)Updated: 2003-11-02
Index Return to Main Contents
NAME
ALTER FUNCTION - 修改一个函数的定义SYNOPSIS
ALTER FUNCTION name ( [ type [, ...] ] ) RENAME TO newname
DESCRIPTION 描述
ALTER FUNCTION 修改一个函数的定义,目前唯一的功能是修改它的名字。
PARAMETERS 参数
- name
-
一个现有的函数的名字(可以有模式修饰)。 - type
-
该函数参数的数据类型。 - newname
-
函数的新名字。
EXAMPLES 例子
把名字为 sqrt,参数类型为 integer 的函数重命名为 square_root:
ALTER FUNCTION sqrt(integer) RENAME TO square_root;
COMPATIBILITY 兼容性
在 SQL 标准里有一个 ALTER FUNCTION 语句,但是它并没有提供重命名函数的选项。
SEE ALSO 参见
CREATE FUNCTION [create_function(7)], DROP FUNCTION [drop_function(l)]译者
Postgresql 中文网站 何伟平 <laser@pgsqldb.org>
Index
This document was created by man2html, using the manual pages.
Time: 13:12:50 GMT, December 24, 2015