create_table.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:2k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end 
  2. "CREATE TABLE" {bold} "
  3. CREATE [ TEMPORARY | TEMP ] TABLE table (
  4. column type
  5. [ NULL | NOT NULL ] [ UNIQUE ] [ DEFAULT value ]
  6. [column_constraint_clause | PRIMARY KEY } [ ... ] ]
  7. [, ... ]
  8. [, PRIMARY KEY ( column [, ...] ) ]
  9. [, CHECK ( condition ) ]
  10. [, table_constraint_clause ]
  11. ) [ INHERITS ( inherited_table [, ...] ) ]
  12. " {code} "
  13. TEMPORARY
  14. The table is created only for this session, and is automatically dropped on session exit. Existing permanent tables with the same name are not visible while the temporary table exists. 
  15. " {} "
  16. table" {italic} "
  17.    The name of a new table to be created. 
  18. " {} " 
  19. column" {italic} "
  20.    The name of a column. 
  21. " {} "
  22. type" {italic} "
  23.    The type of the column. This may include array specifiers. Refer to the PostgreSQL User's Guide for further information about data types and arrays. 
  24. " {} "
  25. DEFAULT value" {italic} "
  26.    A default value for a column. See the DEFAULT clause for more information. 
  27. " {} "
  28. column_constraint_clause" {italic} "
  29.    The optional column constraint clauses specify a list of integrity constraints or tests which new or updated entries must satisfy for an insert or update operation to succeed. Each constraint must evaluate to a boolean expression. Although SQL92 requires the column_constraint_clause to refer to that column only, Postgres allows multiple columns to be referenced within a single column constraint. See the column constraint clause for more information. 
  30. " {} "
  31. table_constraint_clause" {italic} "
  32.    The optional table CONSTRAINT clause specifies a list of integrity constraints which new or updated entries must satisfy for an insert or update operation to succeed. Each constraint must evaluate to a boolean expression. Multiple columns may be referenced within a single constraint. Only one PRIMARY KEY clause may be specified for a table; PRIMARY KEY column (a table constraint) and PRIMARY KEY (a column constraint) are mutually exclusive.. See the table constraint clause for more information. 
  33. " {} "
  34. INHERITS inherited_table" {italic} "
  35.    The optional INHERITS clause specifies a collection of table names from which this table automatically inherits all fields. If any inherited field name appears more than once, Postgres reports an error. Postgres automatically allows the created table to inherit functions on tables above it in the inheritance hierarchy. 
  36. Aside:  Inheritance of functions is done according to the conventions of the Common Lisp Object System (CLOS). 
  37. "