DROP CAST
Section: SQL Commands (7)Updated: 2003-11-02
Index Return to Main Contents
NAME
DROP CAST - 删除一个用户定义的类型转换SYNOPSIS
DROP CAST (sourcetype AS targettype) [ CASCADE | RESTRICT ]
DESCRIPTION 描述
DROP CAST 删除一个前面定义的类型转换。
要能删除一个类型转换,你必须拥有源或者目的数据类型。 这是和创建一个类型转换相同的权限。
PARAMETERS 参数
- sourcetype
-
类型转换里的源数据类型。 - targettype
-
类型转换里的目的数据类型。 - CASCADE
- RESTRICT
-
这些键字没有任何效果,因为在类型转换上没有依赖关系。
EXAMPLES 例子
删除从 text 到 int 的转换:
DROP CAST (text AS int);
COMPATIBILITY 兼容性
SEE ALSO 参见
CREATE CAST [create_cast(7)]译者
Postgresql 中文网站 何伟平 <laser@pgsqldb.org>
Index
This document was created by man2html, using the manual pages.
Time: 13:12:51 GMT, December 24, 2015