create_type.hlp

来自「关系型数据库 Postgresql 6.5.2」· HLP 代码 · 共 25 行

HLP
25
字号
.pgaw:Help.f.t insert end "CREATE TYPE" {bold} " allows the user to register a new user data type with Postgres for use in the current data base. The user who defines a type becomes its owner. Typename is the name of the new \type and must be unique within the types defined for this database. " {} "Synopsis" {bold} "CREATE TYPE typename (        INPUT          = input_function      , OUTPUT         = output_function      , INTERNALLENGTH = (internallength | VARIABLE)    \[ , EXTERNALLENGTH = (externallength | VARIABLE) \]    \[ , ELEMENT        = element \]    \[ , DELIMITER      = delimiter \]    \[ , DEFAULT        = \"default\" \]    \[ , SEND           = send_function \]    \[ , RECEIVE        = receive_function \]    \[ , PASSEDBYVALUE \])" {code} "Notes" {bold} "Refer to DROP TYPE to remove an existing type. See also CREATE FUNCTION, CREATE OPERATOR and the chapter on Large Objects in the PostgreSQL Programmer's Guide."

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?