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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-CREATETABLE">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    CREATE TABLE
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    CREATE TABLE
  11.   </refname>
  12.   <refpurpose>
  13.    Creates a new table
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-09-11</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. CREATE [ TEMPORARY | TEMP ] TABLE <replaceable class="PARAMETER">table</replaceable> (
  22.     <replaceable class="PARAMETER">column</replaceable> <replaceable class="PARAMETER">type</replaceable>
  23.     [ NULL | NOT NULL ] [ UNIQUE ] [ DEFAULT <replaceable class="PARAMETER">value</replaceable> ]
  24.     [<replaceable>column_constraint_clause</replaceable> | PRIMARY KEY } [ ... ] ]
  25.     [, ... ]
  26.     [, PRIMARY KEY ( <replaceable class="PARAMETER">column</replaceable> [, ...] ) ]
  27.     [, CHECK ( <replaceable class="PARAMETER">condition</replaceable> ) ]
  28.     [, <replaceable>table_constraint_clause</replaceable> ]
  29.     ) [ INHERITS ( <replaceable>inherited_table</replaceable> [, ...] ) ]
  30.   </synopsis>
  31.   
  32.   <refsect2 id="R2-SQL-CREATETABLE-1">
  33.    <refsect2info>
  34.     <date>1998-09-11</date>
  35.    </refsect2info>
  36.    <title>
  37.     Inputs
  38.    </title>
  39.    <para>
  40.     <variablelist>
  41.      <varlistentry>
  42.       <term>TEMPORARY</term>
  43.       <listitem>
  44.        <para>
  45. The table is created only for this session, and is
  46. automatically dropped on session exit.
  47. Existing permanent tables with the same name are not visible
  48. while the temporary table exists.
  49.        </para>
  50.       </listitem>
  51.      </varlistentry>
  52.      <varlistentry>
  53.       <term><replaceable class="PARAMETER">table</replaceable></term>
  54.       <listitem>
  55.        <para>
  56. The name of a new table to be created.
  57.        </para>
  58.       </listitem>
  59.      </varlistentry>
  60.      <varlistentry>
  61.       <term><replaceable class="PARAMETER">column</replaceable></term>
  62.       <listitem>
  63.        <para>
  64. The name of a column.
  65.        </para>
  66.       </listitem>
  67.      </varlistentry>
  68.      <varlistentry>
  69.       <term><replaceable class="PARAMETER">type</replaceable></term>
  70.       <listitem>
  71.        <para>
  72. The type of the column. This may include array specifiers.
  73. Refer to the <citetitle>PostgreSQL User's Guide</citetitle> for
  74. further information about data types and arrays.
  75.        </para>
  76.       </listitem>
  77.      </varlistentry>
  78.      <varlistentry>
  79.       <term>DEFAULT <replaceable class="PARAMETER">value</replaceable></term>
  80.       <listitem>
  81.        <para>
  82. A default value for a column.
  83. See the DEFAULT clause for more information.
  84.        </para>
  85.       </listitem>
  86.      </varlistentry>
  87.      <varlistentry>
  88.       <term><replaceable>column_constraint_clause</replaceable></term>
  89.       <listitem>
  90.        <para>
  91. The optional column constraint clauses specify a list of integrity 
  92. constraints or tests which new or updated entries must satisfy for
  93. an insert or update operation to succeed. Each constraint
  94. must evaluate to a boolean expression. Although <acronym>SQL92</acronym>
  95. requires the <replaceable class="PARAMETER">column_constraint_clause</replaceable>
  96. to refer to that column only, <productname>Postgres</productname>
  97. allows multiple columns
  98. to be referenced within a single column constraint.
  99. See the column constraint clause for more information.
  100.        </para>
  101.       </listitem>
  102.      </varlistentry>
  103.      <varlistentry>
  104.       <term><replaceable>table_constraint_clause</replaceable></term>
  105.       <listitem>
  106.        <para>
  107. The optional table CONSTRAINT clause specifies a list of integrity 
  108. constraints which new or updated entries must satisfy for
  109. an insert or update operation to succeed. Each constraint
  110. must evaluate to a boolean expression. Multiple columns
  111. may be referenced within a single constraint.
  112. Only one PRIMARY KEY clause may be specified for a table;
  113. PRIMARY KEY <replaceable>column</replaceable>
  114. (a table constraint) and PRIMARY KEY (a column constraint) are
  115. mutually exclusive..
  116. See the table constraint clause for more information.
  117.        </para>
  118.       </listitem>
  119.      </varlistentry>
  120.      <varlistentry>
  121.       <term>INHERITS <replaceable class="PARAMETER">inherited_table</replaceable></term>
  122.       <listitem>
  123.        <para>
  124. The optional INHERITS clause specifies a collection of table
  125. names from which this table automatically inherits all fields.
  126. If any inherited field name appears more than once, 
  127. <productname>Postgres</productname>
  128. reports an error.
  129. <productname>Postgres</productname> automatically allows the created
  130. table to inherit functions on tables above it in the inheritance
  131. hierarchy.
  132. <note>
  133.  <title>Aside</title>
  134.  <para>
  135.   Inheritance of functions is done according
  136.   to the conventions of the Common Lisp Object System (CLOS).
  137.  </para>
  138. </note>
  139.        </para>
  140.       </listitem>
  141.      </varlistentry>
  142.     </variablelist>
  143.    </para>    
  144.   </refsect2>
  145.   <refsect2 id="R2-SQL-CREATETABLE-2">
  146.    <refsect2info>
  147.     <date>1998-09-11</date>
  148.    </refsect2info>
  149.    <title>
  150.     Outputs
  151.    </title>
  152.    <para>
  153.     <variablelist>
  154.      <varlistentry>
  155.       <term><computeroutput>
  156. CREATE
  157.        </computeroutput></term>
  158.       <listitem>
  159.        <para>
  160. Message returned if table is successfully created.
  161.        </para>
  162.       </listitem>
  163.      </varlistentry>
  164.      <varlistentry>
  165.       <term><computeroutput>
  166. ERROR
  167.        </computeroutput></term>
  168.       <listitem>
  169.        <para>
  170. Message returned if table creation failed.
  171. This is usually accompanied by some descriptive text, such as:
  172. <computeroutput>
  173. ERROR:  Relation '<replaceable class="parameter">table</replaceable>' already exists
  174. </computeroutput>
  175. which occurs at runtime, if the table specified already exists
  176. in the database.
  177.        </para>
  178.       </listitem>
  179.      </varlistentry>
  180.      <varlistentry>
  181.       <term><computeroutput>
  182. ERROR:  DEFAULT: type mismatched
  183.        </computeroutput></term>
  184.       <listitem>
  185.        <para>
  186. If data type of default value doesn't match the
  187. column definition's data type.
  188.        </para>
  189.       </listitem>
  190.      </varlistentry>
  191.     </variablelist>
  192.    </para>
  193.   </refsect2>
  194.  </refsynopsisdiv>
  195.  <refsect1 id="R1-SQL-CREATETABLE-1">
  196.   <refsect1info>
  197.    <date>1998-09-11</date>
  198.   </refsect1info>
  199.   <title>
  200.    Description
  201.   </title>
  202.   <para>
  203.    <command>CREATE TABLE</command> will enter a new table into the current data
  204.    base. The table will be "owned" by the user issuing the
  205.    command.
  206.   </para>
  207.   <para>
  208.    The new table is created as a heap with no initial data.
  209.    A table can have no more than 1600 columns (realistically,
  210.    this is limited by the fact that tuple sizes must
  211.    be less than 8192 bytes), but this limit may be configured
  212.    lower at some sites. A table cannot have the same name as
  213.    a system catalog table.
  214.   </para>
  215.  </refsect1>
  216.  <refsect1 id="R1-SQL-DEFAULTCLAUSE-1">
  217.   <refsect1info>
  218.    <date>1998-09-11</date>
  219.   </refsect1info>
  220.   <title>
  221.    DEFAULT Clause
  222.   </title>
  223.   <para>
  224.    <synopsis>
  225. DEFAULT <replaceable class="PARAMETER">value</replaceable>
  226.    </synopsis>
  227.   </para>
  228.   <refsect2 id="R2-SQL-DEFAULTCLAUSE-1">
  229.    <refsect2info>
  230.     <date>1998-09-11</date>
  231.    </refsect2info>
  232.    <title>
  233.     Inputs
  234.    </title>
  235.    <para>
  236.     <variablelist>
  237.      <varlistentry>
  238.       <term><replaceable class="parameter">value</replaceable></term>
  239.       <listitem>
  240.        <para>
  241. The possible values for the default value expression are:
  242. <itemizedlist>
  243.  <listitem>
  244.   <simpara>
  245.    a literal value
  246.   </simpara>
  247.  </listitem>
  248.  <listitem>
  249.   <simpara>
  250.    a user function
  251.   </simpara>
  252.  </listitem>
  253.  <listitem>
  254.   <simpara>
  255.    a niladic function
  256.   </simpara>
  257.  </listitem>
  258. </itemizedlist>
  259.        </para>
  260.       </listitem>
  261.      </varlistentry>
  262.     </variablelist>
  263.    </para>
  264.   </refsect2>
  265.   <refsect2 id="R2-SQL-DEFAULTCLAUSE-2">
  266.    <refsect2info>
  267.     <date>1998-09-11</date>
  268.    </refsect2info>
  269.    <title>
  270.     Outputs
  271.    </title>
  272.    <para>
  273.     None.
  274.    </para>
  275.   </refsect2>
  276.   
  277.   <refsect2 id="R2-SQL-DEFAULTCLAUSE-3">
  278.    <refsect2info>
  279.     <date>1998-09-11</date>
  280.    </refsect2info>
  281.    <title>
  282.     Description
  283.    </title>
  284.    <para>
  285.     The DEFAULT clause assigns a default data value to a column
  286.     (via a column definition in the CREATE TABLE statement). 
  287.     The data type of a default value must match the column definition's
  288.     data type.
  289.    </para>
  290.    <para>
  291.     An INSERT operation that includes a column without a specified
  292.     default value will assign the NULL value to the column
  293.     if no explicit data value is provided for it.
  294.     Default <replaceable class="parameter">literal</replaceable> means
  295.     that the default is the specified constant value.
  296.     Default <replaceable class="parameter">niladic-function</replaceable>
  297.     or <replaceable class="parameter">user-function</replaceable> means
  298.     that the default
  299.     is the value of the specified function at the time of the INSERT.
  300.    </para>
  301.    <para>
  302.     There are two types of niladic functions:
  303.     <variablelist>
  304.      <varlistentry>
  305.       <term>niladic USER</term>
  306.       <listitem>
  307.        <variablelist>
  308. <varlistentry>
  309.  <term>CURRENT_USER / USER</term>
  310.  <listitem>
  311.   <simpara>See CURRENT_USER function</simpara>
  312.  </listitem>
  313. </varlistentry>
  314. <varlistentry>
  315.  <term>SESSION_USER</term>
  316.  <listitem>
  317.   <simpara>not yet supported</simpara>
  318.  </listitem>
  319. </varlistentry>
  320. <varlistentry>
  321.  <term>SYSTEM_USER</term>
  322.  <listitem>
  323.   <simpara>not yet supported</simpara>
  324.  </listitem>
  325. </varlistentry>
  326.        </variablelist>
  327.       </listitem>
  328.      </varlistentry>
  329.      <varlistentry>
  330.       <term>niladic datetime</term>
  331.       <listitem>
  332.        <variablelist>
  333. <varlistentry>
  334.  <term>CURRENT_DATE</term>
  335.  <listitem>
  336.   <simpara>See CURRENT_DATE function</simpara>
  337.  </listitem>
  338. </varlistentry>
  339. <varlistentry>
  340.  <term>CURRENT_TIME</term>
  341.  <listitem>
  342.   <simpara>See CURRENT_TIME function</simpara>
  343.  </listitem>
  344. </varlistentry>
  345. <varlistentry>
  346.  <term>CURRENT_TIMESTAMP</term>
  347.  <listitem>
  348.   <simpara>See CURRENT_TIMESTAMP function</simpara>
  349.  </listitem>
  350. </varlistentry>
  351.        </variablelist>
  352.       </listitem>
  353.      </varlistentry>
  354.     </variablelist>
  355.    </para>
  356.    <para>
  357.     In the current release (v6.5), <productname>Postgres</productname>
  358.     evaluates all default expressions at the time the table is defined.
  359.     Hence, functions which are "non-cacheable" such as
  360.     <function>CURRENT_TIMESTAMP</function> may not produce the desired
  361.     effect. For the particular case of date/time types, one can work
  362.     around this behavior by using 
  363.     <quote>DEFAULT TEXT 'now'</quote>
  364.     instead of
  365.     <quote>DEFAULT 'now'</quote>
  366.     or
  367.     <quote>DEFAULT CURRENT_TIMESTAMP</quote>.
  368.     This forces <productname>Postgres</productname> to consider the constant a string
  369.     type and then to convert the value to <type>timestamp</type> at runtime.
  370.    </para>
  371.   </refsect2>
  372.   <refsect2 id="R2-SQL-DEFAULTCLAUSE-4">
  373.    <refsect2info>
  374.     <date>1998-09-11</date>
  375.    </refsect2info>
  376.    <title>
  377.     Usage
  378.    </title>
  379.    <para>
  380.     To assign a constant value as the default for the
  381.     columns <literal>did</literal> and <literal>number</literal>,
  382.     and a string literal to the column <literal>did</literal>:
  383.     <programlisting>
  384. CREATE TABLE video_sales (
  385.     did      VARCHAR(40) DEFAULT 'luso films',
  386.     number   INTEGER DEFAULT 0,
  387.     total    CASH DEFAULT '$0.0'
  388. );
  389.     </programlisting>
  390.    </para>
  391.    <para>
  392.     To assign an existing sequence
  393.     as the default for the column <literal>did</literal>,
  394.     and a literal to the column <literal>name</literal>:
  395.     <programlisting>
  396. CREATE TABLE distributors (
  397.     did      DECIMAL(3)  DEFAULT NEXTVAL('serial'),
  398.     name     VARCHAR(40) DEFAULT 'luso films'
  399. );
  400.     </programlisting>
  401.    </para>
  402.   </refsect2>
  403.  </refsect1>
  404.  <refsect1 id="R1-SQL-COLUMNCONSTRAINT-1">
  405.   <refsect1info>
  406.    <date>1998-09-11</date>
  407.   </refsect1info>
  408.   <title>
  409.    Column CONSTRAINT Clause
  410.   </title>
  411.   <para>
  412.    <synopsis>
  413. [ CONSTRAINT <replaceable class="parameter">name</replaceable> ] { [
  414.     NULL | NOT NULL ] | UNIQUE | PRIMARY KEY | CHECK <replaceable
  415.      class="parameter">constraint</replaceable> } [, ...]
  416.    </synopsis>
  417.   </para>
  418.   <refsect2 id="R2-SQL-COLUMNCONSTRAINT-1">
  419.    <refsect2info>
  420.     <date>1998-09-11</date>
  421.    </refsect2info>
  422.    <title>
  423.     Inputs
  424.    </title>
  425.    <para>
  426.     <variablelist>
  427.      <varlistentry>
  428.       <term><replaceable class="parameter">name</replaceable></term>
  429.       <listitem>
  430.        <para>
  431. An arbitrary name given to the integrity constraint. 
  432. If <replaceable class="parameter">name</replaceable> is not specified,
  433. it is generated from the table and column names,
  434. which should ensure uniqueness for
  435. <replaceable class="parameter">name</replaceable>.
  436.        </para>
  437.       </listitem>
  438.      </varlistentry>
  439.      <varlistentry>
  440.       <term>NULL</term>
  441.       <listitem>
  442.        <para>
  443. The column is allowed to contain NULL values. This is the default.
  444.        </para>
  445.       </listitem>
  446.      </varlistentry>
  447.      <varlistentry>
  448.       <term>NOT NULL</term>
  449.       <listitem>
  450.        <para>
  451. The column is not allowed to contain NULL values.
  452. This is equivalent to the column constraint
  453. CHECK (<replaceable class="PARAMETER">column</replaceable> NOT NULL).
  454.        </para>
  455.       </listitem>
  456.      </varlistentry>
  457.      <varlistentry>
  458.       <term>UNIQUE</term>
  459.       <listitem>
  460.        <para>
  461. The column must have unique values. In <productname>Postgres</productname>
  462. this is enforced by an implicit creation of a unique index on the table.
  463.        </para>
  464.       </listitem>
  465.      </varlistentry>
  466.      <varlistentry>
  467.       <term>PRIMARY KEY</term>
  468.       <listitem>
  469.        <para>
  470. This column is a primary key, which implies that uniqueness is
  471. enforced by the system and that other tables may rely on this column
  472. as a unique identifier for rows.
  473. See PRIMARY KEY for more information.
  474.        </para>
  475.       </listitem>
  476.      </varlistentry>
  477.      <varlistentry>
  478.       <term>
  479. <replaceable class="parameter">constraint</replaceable>
  480.       </term>
  481.       <listitem>
  482.        <para>
  483. The definition of the constraint.
  484.        </para>
  485.       </listitem>
  486.      </varlistentry>
  487.     </variablelist>
  488.    </para>
  489.   </refsect2>
  490.   <refsect2 id="R2-SQL-COLUMNCONSTRAINT-2">
  491.    <refsect2info>
  492.     <date>1998-09-11</date>
  493.    </refsect2info>
  494.    <title>
  495.     Description
  496.    </title>
  497.    <para>
  498.     A Constraint is a named rule: an SQL object which helps define
  499.     valid sets of values by putting limits on the results of INSERT,
  500.     UPDATE or DELETE operations performed on a Base Table. 
  501.    </para>
  502.    <para>
  503.     There are two ways to define integrity constraints:
  504.     table constraints, covered later, and column constraints, covered here.
  505.    </para>
  506.    <para>
  507.     A column constraint is an integrity constraint defined as part
  508.     of a column definition, and logically becomes a table
  509.     constraint as soon as it is created. The column
  510.     constraints available are:
  511.     <simplelist columns="1">
  512.      <member>PRIMARY KEY</member>
  513.      <member>REFERENCES</member>
  514.      <member>UNIQUE</member>
  515.      <member>CHECK</member>
  516.      <member>NOT NULL</member>
  517.     </simplelist></para>
  518.    <note>
  519.     <para>
  520.      <productname>Postgres</productname> does not yet 
  521.      (at release 6.5) support
  522.      REFERENCES integrity constraints. The parser
  523.      accepts the REFERENCES syntax but ignores the clause.
  524.     </para>
  525.    </note>
  526.   </refsect2>
  527.    
  528.   <refsect2 id="R2-SQL-NOTNULL-1">
  529.    <refsect2info>
  530.     <date>1998-09-11</date>
  531.    </refsect2info>
  532.    <title>
  533.     NOT NULL Constraint
  534.    </title>
  535.    <synopsis>
  536. [ CONSTRAINT <replaceable class="parameter">name</replaceable> ] NOT NULL 
  537.    </synopsis>
  538.    <para>
  539.     The NOT NULL constraint specifies a rule that a column may
  540.     contain only non-null values. 
  541.     This is a column constraint only, and not allowed
  542.     as a table constraint.
  543.    </para>
  544.    <refsect3 id="R3-SQL-NOTNULL-1">
  545.     <refsect3info>
  546.      <date>1998-09-11</date>
  547.     </refsect3info>
  548.     <title>
  549.      Outputs
  550.     </title>
  551.     <para>
  552.      <variablelist>
  553.       <varlistentry>
  554.        <term><replaceable>status</replaceable></term>
  555.        <listitem>
  556. <para>
  557.  <variablelist>
  558.   <varlistentry>
  559.    <term><computeroutput>
  560. ERROR:  ExecAppend: Fail to add null value in not null attribute "<replaceable class="parameter">column</replaceable>".
  561.     </computeroutput></term>
  562.    <listitem>
  563.     <para>
  564.      This error occurs at runtime if one tries to insert a null value
  565.      into a column which has a NOT NULL constraint.
  566.     </para>
  567.    </listitem>
  568.   </varlistentry>
  569.  </variablelist>
  570. </para>
  571.        </listitem>
  572.       </varlistentry>
  573.      </variablelist> 
  574.     </para>
  575.    </refsect3>
  576.    <refsect3 id="R3-SQL-NOTNULL-2">
  577.     <refsect3info>
  578.      <date>1998-09-11</date>
  579.     </refsect3info>
  580.     <title>
  581.      Description
  582.     </title>
  583.     <para>
  584.     </para>
  585.    </refsect3>
  586.    <refsect3 id="R3-SQL-NOTNULL-3">
  587.     <refsect3info>
  588.      <date>1998-09-11</date>
  589.     </refsect3info>
  590.     <title>
  591.      Usage
  592.     </title>
  593.     <para>
  594.      Define two NOT NULL column constraints on the table
  595.      <classname>distributors</classname>,
  596.      one of which being a named constraint:
  597.      <programlisting>
  598. CREATE TABLE distributors (
  599.     did      DECIMAL(3) CONSTRAINT no_null NOT NULL,
  600.     name     VARCHAR(40) NOT NULL
  601. );
  602.      </programlisting>
  603.     </para>
  604.    </refsect3>
  605.   </refsect2>
  606.   <refsect2 id="R2-SQL-UNIQUECLAUSE-1">
  607.    <refsect2info>
  608.     <date>1998-09-11</date>
  609.    </refsect2info>
  610.    <title>
  611.     UNIQUE Constraint
  612.    </title>
  613.    <synopsis>
  614. [ CONSTRAINT <replaceable class="parameter">name</replaceable> ] UNIQUE
  615.    </synopsis>
  616.    <refsect3>
  617.     <title>Inputs</title>
  618.     <para>
  619.      <variablelist>
  620.       <varlistentry>
  621.        <term>CONSTRAINT <replaceable class="parameter">name</replaceable></term>
  622.        <listitem>
  623. <para>
  624.  An arbitrary label given to a constraint.
  625. </para>
  626.        </listitem>
  627.       </varlistentry>
  628.      </variablelist>
  629.     </para>
  630.    </refsect3>
  631.    
  632.    <refsect3>
  633.     <title>Outputs</title>
  634.     <para>
  635.      <variablelist>
  636.       <varlistentry>
  637.        <term><replaceable>status</replaceable></term>
  638.        <listitem>
  639. <para>
  640.  <variablelist>
  641.   <varlistentry>
  642.    <term><computeroutput>
  643. ERROR: Cannot insert a duplicate key into a unique index.
  644.     </computeroutput></term>
  645.    <listitem>
  646.     <para>
  647.      This error occurs at runtime if one tries to insert a
  648.      duplicate value into a column.
  649.     </para>
  650.    </listitem>
  651.   </varlistentry>
  652.  </variablelist>
  653. </para>
  654.        </listitem>
  655.       </varlistentry>
  656.      </variablelist>
  657.     </para>
  658.    </refsect3>
  659.    <refsect3>
  660.     <title>
  661.      Description
  662.     </title>
  663.     <para>
  664.      The UNIQUE constraint specifies a rule that a group of one or
  665.      more distinct columns of a table may contain only unique values.
  666.     </para>
  667.     <para>
  668.      The column definitions of the specified columns do not have to
  669.      include a NOT NULL constraint to be included in a UNIQUE
  670.      constraint.  Having more than one null value in a column without a
  671.      NOT NULL constraint, does not violate a UNIQUE constraint.
  672.      (This deviates from the <acronym>SQL92</acronym> definition, but
  673.      is a more sensible convention. See the section on compatibility
  674.      for more details.).
  675.     </para>
  676.     <para>
  677.      Each UNIQUE column constraint must name a column that is
  678.      different from the set of columns named by any other UNIQUE or
  679.      PRIMARY KEY constraint defined for the table.
  680.     </para>
  681.     <note>
  682.      <para>
  683.       <productname>Postgres</productname> automatically creates a unique
  684.       index for each UNIQUE constraint, to assure
  685.       data integrity. See CREATE INDEX for more information.
  686.      </para>
  687.     </note>
  688.    </refsect3>
  689.    <refsect3 id="R3-SQL-UNIQUECLAUSE-3">
  690.     <title>
  691.      Usage
  692.     </title>
  693.     <para>
  694.      Defines a UNIQUE column constraint for the table distributors.
  695.      UNIQUE column constraints can only be defined on one column
  696.      of the table:
  697.      <programlisting>
  698. CREATE TABLE distributors (
  699.     did      DECIMAL(3),
  700.     name     VARCHAR(40) UNIQUE
  701. );
  702.   </programlisting>
  703.      which is equivalent to the following specified as a table constraint:
  704.      <programlisting>
  705. CREATE TABLE distributors (
  706.     did      DECIMAL(3),
  707.     name     VARCHAR(40),
  708.     UNIQUE(name)
  709. );
  710.      </programlisting>
  711.     </para>
  712.    </refsect3>
  713.   </refsect2>
  714.   <refsect2 id="R2-SQL-CHECK-1">
  715.    <refsect2info>
  716.     <date>1998-09-11</date>
  717.    </refsect2info>
  718.    <title>
  719.     The CHECK Constraint
  720.    </title>
  721.    <synopsis>
  722. [ CONSTRAINT <replaceable class="parameter">name</replaceable> ] CHECK
  723.     ( <replaceable>condition</replaceable> [, ...] ) 
  724.    </synopsis>
  725.    <refsect3 id="R3-SQL-CHECK-1">
  726.     <title>Inputs</title>
  727.     <para>
  728.      <variablelist>
  729.       <varlistentry>
  730.        <term><replaceable class="parameter">name</replaceable></term>
  731.        <listitem>
  732. <para>
  733.  An arbitrary name given to a constraint.
  734. </para>
  735.        </listitem>
  736.       </varlistentry>
  737.       <varlistentry>
  738.        <term><replaceable>condition</replaceable></term>
  739.        <listitem>
  740. <para>
  741.  Any valid conditional expression evaluating to a boolean result.
  742. </para>
  743.        </listitem>
  744.       </varlistentry>
  745.      </variablelist>
  746.     </para>
  747.    </refsect3>
  748.    <refsect3 id="R3-SQL-CHECK-2">
  749.     <refsect3info>
  750.      <date>1998-09-11</date>
  751.     </refsect3info>
  752.     <title>
  753.      Outputs
  754.     </title>
  755.     <para>
  756.      <variablelist>
  757.       <varlistentry>
  758.        <term><replaceable>status</replaceable></term>
  759.        <listitem>
  760. <para>
  761.  <variablelist>
  762.   <varlistentry>
  763.    <term><computeroutput>
  764. ERROR:  ExecAppend: rejected due to CHECK constraint "<replaceable class="parameter">table_column</replaceable>".
  765.     </computeroutput></term>
  766.    <listitem>
  767.     <para>
  768.      This error occurs at runtime if one tries to insert an illegal
  769.      value into a column subject to a CHECK constraint.
  770.     </para>
  771.    </listitem>
  772.   </varlistentry>
  773.  </variablelist>
  774. </para>
  775.        </listitem>
  776.       </varlistentry>
  777.      </variablelist>
  778.     </para>
  779.    </refsect3>
  780.    <refsect3>
  781.     <title>Description</title>
  782.     <para>
  783.      The CHECK constraint specifies a restriction on allowed values
  784.      within a column.
  785.      The CHECK constraint is also allowed as a table constraint.
  786.     </para>
  787.     <para>
  788.      The SQL92 CHECK column constraints can only be defined on, and
  789.      refer to, one column of the table. <productname>Postgres</productname>
  790.      does not have
  791.      this restriction.
  792.     </para>
  793.    </refsect3>
  794.   </refsect2>
  795.   
  796.   <refsect2 id="R2-SQL-PRIMARYKEY-1">
  797.    <refsect2info>
  798.     <date>1998-09-11</date>
  799.    </refsect2info>
  800.    <title>
  801.     PRIMARY KEY Constraint
  802.    </title>
  803.    <synopsis>
  804. [ CONSTRAINT <replaceable class="PARAMETER">name</replaceable> ] PRIMARY KEY 
  805.    </synopsis>
  806.    <refsect3>
  807.     <title>Inputs</title>
  808.     <para>
  809.      <variablelist>
  810.       <varlistentry>
  811.        <term>CONSTRAINT <replaceable class="PARAMETER">name</replaceable></term>
  812.        <listitem>
  813. <para>
  814.  An arbitrary name for the constraint.
  815. </para>
  816.        </listitem>
  817.       </varlistentry>
  818.      </variablelist>
  819.     </para>
  820.    </refsect3>
  821.    <refsect3>
  822.     <title>Outputs</title>
  823.     <variablelist>
  824.      <varlistentry>
  825.       <term><computeroutput>
  826. ERROR: Cannot insert a duplicate key into a unique index.
  827.        </computeroutput></term>
  828.       <listitem>
  829.        <para>
  830. This occurs at run-time if one tries to insert a duplicate value into
  831. a column subject to a PRIMARY KEY constraint.
  832.        </para>
  833.       </listitem>
  834.      </varlistentry>
  835.     </variablelist>
  836.    </refsect3>
  837.    <refsect3>
  838.     <title>Description</title>
  839.     <para>
  840.      The PRIMARY KEY column constraint specifies that a column of a table
  841.      may contain only unique
  842.      (non-duplicate), non-NULL values. The definition of
  843.      the specified column does not have to include an explicit NOT NULL
  844.      constraint to be included in a PRIMARY KEY constraint. 
  845.     </para>
  846.     <para>
  847.      Only one PRIMARY KEY can be specified for a table.
  848.     </para>
  849.    </refsect3>
  850.    
  851.    <refsect3 id="R3-SQL-PRIMARYKEY-3">
  852.     <refsect3info>
  853.      <date>1998-09-11</date>
  854.     </refsect3info>
  855.     <title>
  856.      Notes
  857.     </title>
  858.     <para>
  859.      <productname>Postgres</productname> automatically creates
  860.      a unique index to assure
  861.      data integrity. (See CREATE INDEX statement)
  862.     </para>
  863.     <para>
  864.      The PRIMARY KEY constraint should name a set of columns that is
  865.      different from other sets of columns named by any UNIQUE constraint
  866.      defined for the same table, since it will result in duplication
  867.      of equivalent indexes and unproductive additional runtime overhead.
  868.      However, <productname>Postgres</productname> does not specifically
  869.      disallow this.
  870.     </para>
  871.    </refsect3>
  872.   </refsect2>
  873.  </refsect1>
  874.  
  875.  <refsect1 id="R1-SQL-TABLECONSTRAINT-1">
  876.   <refsect1info>
  877.    <date>1998-09-11</date>
  878.   </refsect1info>
  879.   <title>
  880.    Table CONSTRAINT Clause
  881.   </title>
  882.   <para>
  883.    <synopsis>
  884. [ CONSTRAINT name ] { PRIMARY KEY |  UNIQUE } ( <replaceable class="parameter">column</replaceable> [, ...] )
  885. [ CONSTRAINT name ] CHECK ( <replaceable>constraint</replaceable> )
  886.    </synopsis>
  887.   </para>
  888.   <refsect2 id="R2-SQL-TABLECONSTRAINT-1">
  889.    <refsect2info>
  890.     <date>1998-09-11</date>
  891.    </refsect2info>
  892.    <title>
  893.     Inputs
  894.    </title>
  895.    <para>
  896.     <variablelist>
  897.      <varlistentry>
  898.       <term>CONSTRAINT <replaceable class="parameter">name</replaceable></term>
  899.       <listitem>
  900.        <para>
  901. An arbitrary name given to an integrity constraint.
  902.        </para>
  903.       </listitem>
  904.      </varlistentry>
  905.      <varlistentry>
  906.       <term><replaceable class="parameter">column</replaceable> [, ...]</term>
  907.       <listitem>
  908.        <para>
  909. The column name(s) for which to define a unique index
  910. and, for PRIMARY KEY, a NOT NULL constraint.
  911.        </para>
  912.       </listitem>
  913.      </varlistentry>
  914.      <varlistentry>
  915.       <term>CHECK ( <replaceable class="parameter">constraint</replaceable> )</term>
  916.       <listitem>
  917.        <para>
  918. A boolean expression to be evaluated as the constraint.
  919.        </para>
  920.       </listitem>
  921.      </varlistentry>
  922.     </variablelist>
  923.    </para>
  924.   </refsect2>
  925.     
  926.   <refsect2 id="R2-SQL-TABLECONSTRAINT-2">
  927.    <refsect2info>
  928.     <date>1998-09-11</date>
  929.    </refsect2info>
  930.    <title>
  931.     Outputs
  932.    </title>
  933.    
  934.    <para>
  935.     The possible outputs for the table constraint clause are the same
  936.     as for the corresponding portions of the column constraint clause.
  937.    </para>
  938.   </refsect2>
  939.   
  940.   <refsect2 id="R2-SQL-TABLECONSTRAINT-3">
  941.    <refsect2info>
  942.     <date>1998-09-11</date>
  943.    </refsect2info>
  944.    <title>
  945.     Description
  946.    </title>
  947.    
  948.    <para>
  949.     A table constraint is an integrity constraint defined on one or
  950.     more columns of a base table. The four variations of "Table
  951.     Constraint" are:
  952.     <simplelist columns="1">
  953.      <member>UNIQUE</member>
  954.      <member>CHECK</member>
  955.      <member>PRIMARY KEY</member>
  956.      <member>FOREIGN KEY</member>
  957.     </simplelist>
  958.    </para>
  959.    <note>
  960.     <para>
  961.      <productname>Postgres</productname> does not yet 
  962.      (as of version 6.5) support FOREIGN KEY
  963.      integrity constraints. The parser understands the FOREIGN KEY syntax,
  964.      but only prints a notice and otherwise ignores the clause.
  965.      Foreign keys may be partially emulated by triggers (See the CREATE TRIGGER
  966.      statement).
  967.     </para>
  968.    </note>
  969.   </refsect2>
  970.  
  971.   <refsect2 id="R2-SQL-UNIQUECLAUSE-4">
  972.    <refsect2info>
  973.     <date>1998-09-11</date>
  974.    </refsect2info>
  975.    <title>
  976.     UNIQUE Constraint
  977.    </title>
  978.    <para>
  979.     <synopsis>
  980. [ CONSTRAINT <replaceable class="parameter">name</replaceable> ] UNIQUE ( <replaceable class="parameter">column</replaceable> [, ...] )
  981.     </synopsis>
  982.    </para>
  983.    <refsect3>
  984.     <title>Inputs</title>
  985.     <variablelist>
  986.      <varlistentry>
  987.       <term>CONSTRAINT <replaceable class="parameter">name</replaceable></term>
  988.       <listitem>
  989.        <para>
  990. An arbitrary name given to a constraint.
  991.        </para>
  992.       </listitem>
  993.      </varlistentry>
  994.      <varlistentry>
  995.       <term><replaceable class="parameter">column</replaceable></term>
  996.       <listitem>
  997.        <para>
  998. A name of a column in a table.
  999.        </para>
  1000.       </listitem>
  1001.      </varlistentry>
  1002.     </variablelist>
  1003.    </refsect3>
  1004.    <refsect3>
  1005.     <title>Outputs</title>
  1006.     <para>
  1007.      <variablelist>
  1008.       <varlistentry>
  1009.        <term><replaceable>status</replaceable></term>
  1010.        <listitem>
  1011. <para>
  1012.  <variablelist>
  1013.   <varlistentry>
  1014.    <term>ERROR: Cannot insert a duplicate key into a unique index</term>
  1015.    <listitem>
  1016.     <para>
  1017.      This error occurs at runtime if one tries to insert a
  1018.      duplicate value into a column.
  1019.     </para>
  1020.    </listitem>
  1021.   </varlistentry>
  1022.  </variablelist>
  1023. </para>
  1024.        </listitem>
  1025.       </varlistentry>
  1026.      </variablelist>
  1027.     </para>
  1028.    </refsect3>
  1029.    
  1030.    <refsect3>
  1031.     <title>
  1032.      Description
  1033.     </title>
  1034.     
  1035.     <para>
  1036.      The UNIQUE constraint specifies a rule that a group of one or
  1037.      more distinct columns of a table may contain only unique values.
  1038.      The behavior of the UNIQUE table constraint is the same as that for column
  1039.      constraints, with the additional capability to span multiple columns.
  1040.     </para>
  1041.     <para>
  1042.      See the section on the UNIQUE column constraint for more details.
  1043.     </para>
  1044.    </refsect3>
  1045.    <refsect3 id="R3-SQL-UNIQUECLAUSE-4">
  1046.     <title>
  1047.      Usage
  1048.     </title>
  1049.     
  1050.     <para>
  1051.      Define a UNIQUE table constraint for the table distributors:
  1052.      <programlisting>
  1053. CREATE TABLE distributors (
  1054.     did      DECIMAL(03),
  1055.     name     VARCHAR(40),
  1056.     UNIQUE(name)
  1057. );
  1058.      </programlisting>
  1059.     </para>
  1060.    </refsect3>
  1061.   </refsect2>
  1062.   <refsect2 id="R2-SQL-PRIMARYKEY-4">
  1063.    <refsect2info>
  1064.     <date>1998-09-11</date>
  1065.    </refsect2info>
  1066.    <title>
  1067.     PRIMARY KEY Constraint
  1068.    </title>
  1069.    <para>
  1070.     <synopsis>
  1071. [ CONSTRAINT <replaceable class="PARAMETER">name</replaceable> ] PRIMARY KEY ( <replaceable class="PARAMETER">column</replaceable> [, ...] ) 
  1072.     </synopsis>
  1073.    </para>
  1074.    <refsect3>
  1075.     <title>Inputs</title>
  1076.     <para>
  1077.      <variablelist>
  1078.       <varlistentry>
  1079.        <term>CONSTRAINT <replaceable class="PARAMETER">name</replaceable></term>
  1080.        <listitem>
  1081. <para>
  1082.  An arbitrary name for the constraint.
  1083. </para>
  1084.        </listitem>
  1085.       </varlistentry>
  1086.       <varlistentry>
  1087.        <term><replaceable class="PARAMETER">column</replaceable> [, ...]</term>
  1088.        <listitem>
  1089. <para>
  1090.  The names of one or more columns in the table.
  1091. </para>
  1092.        </listitem>
  1093.       </varlistentry>
  1094.      </variablelist>
  1095.     </para>
  1096.    </refsect3>
  1097.    
  1098.    <refsect3>
  1099.     <title>Outputs</title>
  1100.     <variablelist>
  1101.      <varlistentry>
  1102.       <term><replaceable>status</replaceable></term>
  1103.       <listitem>
  1104.        <para>
  1105. <variablelist>
  1106.  <varlistentry>
  1107.   <term>ERROR: Cannot insert a duplicate key into a unique index.</term>
  1108.   <listitem>
  1109.    <para>
  1110.     This occurs at run-time if one tries to insert a duplicate value into
  1111.     a column subject to a PRIMARY KEY constraint.
  1112.    </para>
  1113.   </listitem>
  1114.  </varlistentry>
  1115. </variablelist>
  1116.        </para>
  1117.       </listitem>
  1118.      </varlistentry>
  1119.     </variablelist>
  1120.    </refsect3>
  1121.    
  1122.    <refsect3>
  1123.     <title>Description</title>
  1124.     <para>
  1125.      The PRIMARY KEY constraint specifies a rule that a group of one
  1126.      or more distinct columns of a table may contain only unique,
  1127.      (non duplicate), non-null values. The column definitions of
  1128.      the specified columns do not have to include a NOT NULL
  1129.      constraint to be included in a PRIMARY KEY constraint.
  1130.     </para>
  1131.     <para>
  1132.      The PRIMARY KEY table constraint is similar to that for column constraints,
  1133.      with the additional capability of encompassing multiple columns.
  1134.     </para>
  1135.     <para>
  1136.      Refer to the section on the PRIMARY KEY column constraint for more
  1137.      information.
  1138.     </para>
  1139.    </refsect3>
  1140.   </refsect2>
  1141.  </refsect1>
  1142.  
  1143.  <refsect1 id="R1-SQL-CREATETABLE-2">
  1144.   <title>
  1145.    Usage
  1146.   </title>
  1147.   <para>
  1148.    Create table films and table distributors:
  1149.    <programlisting>
  1150. CREATE TABLE films (
  1151.      code      CHARACTER(5) CONSTRAINT firstkey PRIMARY KEY,
  1152.      title     CHARACTER VARYING(40) NOT NULL,
  1153.      did       DECIMAL(3) NOT NULL,
  1154.      date_prod DATE,
  1155.      kind      CHAR(10),
  1156.      len       INTERVAL HOUR TO MINUTE
  1157. );
  1158.    </programlisting>
  1159.    <programlisting>
  1160. CREATE TABLE distributors (
  1161.      did      DECIMAL(03) PRIMARY KEY DEFAULT NEXTVAL('serial'),
  1162.      name     VARCHAR(40) NOT NULL CHECK (name &lt;&gt; '')
  1163. );
  1164.    </programlisting>
  1165.   </para>
  1166.   <para>
  1167.    Create a table with a 2-dimensional array:
  1168.    <programlisting>
  1169.    CREATE TABLE array (
  1170.           vector INT[][]
  1171.           );
  1172.    </programlisting>
  1173.   </para>
  1174.   <para>
  1175.    Define a UNIQUE table constraint for the table films.
  1176.    UNIQUE table constraints can be defined on one or more
  1177.    columns of the table:
  1178.    <programlisting>
  1179. CREATE TABLE films (
  1180.     code      CHAR(5),
  1181.     title     VARCHAR(40),
  1182.     did       DECIMAL(03),
  1183.     date_prod DATE,
  1184.     kind      CHAR(10),
  1185.     len       INTERVAL HOUR TO MINUTE,
  1186.     CONSTRAINT production UNIQUE(date_prod)
  1187. );
  1188.    </programlisting>
  1189.   </para>
  1190.   
  1191.   <para>
  1192.    Define a CHECK column constraint:
  1193.    <programlisting>
  1194. CREATE TABLE distributors (
  1195.     did      DECIMAL(3) CHECK (did > 100),
  1196.     name     VARCHAR(40)
  1197. );
  1198.    </programlisting>
  1199.   </para>
  1200.   <para>
  1201.    Define a CHECK table constraint:
  1202.    <programlisting>
  1203. CREATE TABLE distributors (
  1204.     did      DECIMAL(3),
  1205.     name     VARCHAR(40)
  1206.     CONSTRAINT con1 CHECK (did > 100 AND name > '')
  1207. );
  1208.    </programlisting>
  1209.   </para>
  1210.  
  1211.   <para>
  1212.    Define a PRIMARY KEY table constraint for the table films.
  1213.    PRIMARY KEY table constraints can be defined on one or more
  1214.    columns of the table:
  1215.    <programlisting>
  1216. CREATE TABLE films (
  1217.     code      CHAR(05),
  1218.     title     VARCHAR(40),
  1219.     did       DECIMAL(03),
  1220.     date_prod DATE,
  1221.     kind      CHAR(10),
  1222.     len       INTERVAL HOUR TO MINUTE,
  1223.     CONSTRAINT code_title PRIMARY KEY(code,title)
  1224. );
  1225.    </programlisting>
  1226.   </para>
  1227.   <para>
  1228.    Defines a PRIMARY KEY column constraint for table distributors.
  1229.    PRIMARY KEY column constraints can only be defined on one column
  1230.    of the table (the following two examples are equivalent):
  1231.    <programlisting>
  1232. CREATE TABLE distributors (
  1233.     did      DECIMAL(03),
  1234.     name     CHAR VARYING(40),
  1235.     PRIMARY KEY(did)
  1236. ); 
  1237.    </programlisting>
  1238.    <programlisting>
  1239. CREATE TABLE distributors (
  1240.     did      DECIMAL(03) PRIMARY KEY,
  1241.     name     VARCHAR(40)
  1242. );
  1243.    </programlisting>
  1244.   </para>
  1245.   
  1246.   <refsect2 id="R2-SQL-CREATETABLE-3">
  1247.    <refsect2info>
  1248.     <date>1998-09-11</date>
  1249.    </refsect2info>
  1250.    <title>
  1251.     Notes
  1252.    </title>
  1253.    <para>
  1254.     CREATE TABLE/INHERITS is a <productname>Postgres</productname>
  1255.     language extension.
  1256.    </para>
  1257.   </refsect2>
  1258.   
  1259.  </refsect1>
  1260.  
  1261.  <refsect1 id="R1-SQL-CREATETABLE-3">
  1262.   <title>
  1263.    Compatibility
  1264.   </title>
  1265.   
  1266.   <refsect2 id="R2-SQL-CREATETABLE-4">
  1267.    <refsect2info>
  1268.     <date>1998-09-11</date>
  1269.    </refsect2info>
  1270.    <title>
  1271.     SQL92
  1272.    </title>
  1273.    <para>
  1274.     In addition to the locally-visible temporary table, SQL92 also defines a
  1275.     CREATE GLOBAL TEMPORARY TABLE statement, and optionally an 
  1276.     ON COMMIT clause:
  1277.    <synopsis>
  1278. CREATE GLOBAL TEMPORARY TABLE <replaceable class="parameter">table</replaceable> ( <replaceable class="parameter">column</replaceable> <replaceable class="parameter">type</replaceable> [
  1279.     DEFAULT <replaceable class="parameter">value</replaceable> ] [ CONSTRAINT <replaceable class="parameter">column_constraint</replaceable> ] [, ...] )
  1280.     [ CONSTRAINT <replaceable class="parameter">table_constraint</replaceable> ] [ ON COMMIT { DELETE | PRESERVE } ROWS ] 
  1281.    </synopsis>
  1282.    </para>
  1283.    <para>
  1284.     For temporary tables, the CREATE GLOBAL TEMPORARY TABLE statement
  1285.     names a new table visible to other clients and defines the table's columns and
  1286.     constraints. 
  1287.    </para>
  1288.    <para>
  1289.     The optional ON COMMIT clause of CREATE TEMPORARY TABLE
  1290.     specifies whether or not the temporary table should be emptied of
  1291.     rows whenever COMMIT is executed. If the ON COMMIT clause is
  1292.     omitted, the default option, ON COMMIT DELETE ROWS, is assumed. 
  1293.    </para>
  1294.    <para>
  1295.     To create a temporary table:
  1296.     <programlisting>
  1297. CREATE TEMPORARY TABLE actors (
  1298.     id         DECIMAL(03),
  1299.     name       VARCHAR(40),
  1300.     CONSTRAINT actor_id CHECK (id &lt; 150)
  1301. ) ON COMMIT DELETE ROWS;
  1302.     </programlisting>
  1303.    </para>
  1304.    <refsect3 id="R3-SQL-UNIQUECLAUSE-1">
  1305.     <refsect3info>
  1306.      <date>1998-09-11</date>
  1307.     </refsect3info>
  1308.     <title>
  1309.      UNIQUE clause
  1310.     </title>
  1311.     <para>
  1312.      SQL92 specifies some additional capabilities for UNIQUE:
  1313.     </para>
  1314.     <para>
  1315.      Table Constraint definition:
  1316.      <synopsis>
  1317. [ CONSTRAINT name ] UNIQUE ( column [, ...] )
  1318.     [ { INITIALLY DEFERRED | INITIALLY IMMEDIATE } ]
  1319.     [ [ NOT ] DEFERRABLE ]
  1320.      </synopsis>
  1321.     </para>
  1322.     <para>
  1323.      Column Constraint definition:
  1324.      <synopsis>
  1325. [ CONSTRAINT name ] UNIQUE
  1326.       [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1327.       [ [ NOT ] DEFERRABLE ]
  1328.      </synopsis>
  1329.     </para>
  1330.    </refsect3>
  1331.    
  1332.    <refsect3 id="R3-SQL-NULL-1">
  1333.     <refsect3info>
  1334.      <date>1998-12-24</date>
  1335.     </refsect3info>
  1336.     <title>
  1337.      NULL clause
  1338.     </title>
  1339.     <para>
  1340. The NULL "constraint" (actually a non-constraint)
  1341. is a <productname>Postgres</productname> extension to SQL92
  1342. is included for symmetry with the NOT NULL clause. Since it is the default
  1343. for any column, its presence is simply noise.
  1344.      <synopsis>
  1345. [ CONSTRAINT name ] NULL 
  1346.      </synopsis>
  1347.     </para>
  1348.    </refsect3>
  1349.    
  1350.    <refsect3 id="R3-SQL-NOTNULL-4">
  1351.     <refsect3info>
  1352.      <date>1998-09-11</date>
  1353.     </refsect3info>
  1354.     <title>
  1355.      NOT NULL clause
  1356.     </title>
  1357.     <para>
  1358.      
  1359.      SQL92 specifies some additional capabilities for NOT NULL:
  1360.      <synopsis>
  1361. [ CONSTRAINT name ] NOT NULL 
  1362.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1363.     [ [ NOT ] DEFERRABLE ]
  1364.      </synopsis>
  1365.     </para>
  1366.    </refsect3>
  1367.    
  1368. <!--
  1369. I can't figure out why DEFAULT clause is different from what we already have.
  1370. Perhaps because CURRENT_USER and CURRENT_DATE have specific types (currently
  1371. the "name" type), if you aren't careful then the types won't match up with
  1372. the column. Not our problem...
  1373. - Thomas 1998-08-16
  1374.    <REFSECT3 ID="R3-SQL-DEFAULTCLAUSE-1">
  1375.     <REFSECT3INFO>
  1376.      <DATE>1998-09-11</DATE>
  1377.     </REFSECT3INFO>
  1378.     <TITLE>
  1379.      DEFAULT clause
  1380.     </TITLE>
  1381.     <PARA>
  1382.      SQL92 specifies some additional capabilities for the DEFAULT clause.
  1383.      A DEFAULT clause is used to set the default value for a column
  1384.      or a domain.
  1385.     </para>
  1386.     <synopsis>
  1387.      DEFAULT niladic USER function |
  1388.              niladic datetime function |
  1389.              NULL
  1390.     </synopsis>
  1391.    </refsect3>
  1392. -->
  1393.    <refsect3 id="R3-SQL-CONSTRAINT-3">
  1394.     <refsect3info>
  1395.      <date>1998-09-11</date>
  1396.     </refsect3info>
  1397.     <title>
  1398.      CONSTRAINT clause
  1399.     </title>
  1400.     <para>
  1401.      SQL92 specifies some additional capabilities for constraints,
  1402.      and also defines assertions and domain constraints.
  1403.      <note>
  1404.       <para>
  1405.        <productname>Postgres</productname> does not yet support 
  1406.        either domains or assertions.
  1407.       </para>
  1408.      </note>
  1409.     </para>
  1410.     <para>
  1411.      An assertion is a special type of integrity constraint and share
  1412.      the same namespace as other constraints.
  1413.      However, an assertion is not necessarily dependent on one
  1414.      particular base table as constraints are, so SQL-92 provides the
  1415.      CREATE ASSERTION statement as an alternate method for defining a
  1416.      constraint:
  1417.     </para>
  1418.     <synopsis>
  1419. CREATE ASSERTION name CHECK ( condition )
  1420.     </synopsis>
  1421.     
  1422.     <para>
  1423.      Domain constraints are defined by CREATE DOMAIN or ALTER DOMAIN
  1424.      statements:
  1425.     </para>
  1426.     <para>
  1427.      Domain constraint: 
  1428.      <synopsis>
  1429. [ CONSTRAINT name ] CHECK constraint 
  1430.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1431.     [ [ NOT ] DEFERRABLE ]
  1432.      </synopsis>
  1433.     </para>
  1434.     <para>
  1435.      Table constraint definition:
  1436.      <synopsis>
  1437. [ CONSTRAINT name ] { PRIMARY KEY ( <replaceable class="parameter">column</replaceable>, ... ) | FOREIGN KEY constraint | UNIQUE constraint | CHECK constraint }
  1438.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1439.     [ [ NOT ] DEFERRABLE ]
  1440.      </synopsis>
  1441.     </para>
  1442.     <para>
  1443.      Column constraint definition:
  1444.      <synopsis>
  1445. [ CONSTRAINT name ] { NOT NULL | PRIMARY KEY | FOREIGN KEY constraint | UNIQUE | CHECK constraint }  
  1446.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1447.     [ [ NOT ] DEFERRABLE ]
  1448.      </synopsis>
  1449.     </para>
  1450.     <para>
  1451.      A CONSTRAINT definition may contain one deferment attribute
  1452.      clause and/or one initial constraint mode clause, in any order.
  1453.      <variablelist>
  1454.       <varlistentry>
  1455.        <term>NOT DEFERRABLE</term>
  1456.        <listitem>
  1457. <para>
  1458.  means that the Constraint must be checked for
  1459.  violation of its rule after the execution of every SQL statement.
  1460. </para>
  1461.        </listitem>
  1462.       </varlistentry>
  1463.       <varlistentry>
  1464.        <term>DEFERRABLE</term>
  1465.        <listitem>
  1466. <para>
  1467.  means that checking of the Constraint may be deferred
  1468.  until some later time, but no later than the end of the current
  1469.  transaction.
  1470. </para>
  1471.        </listitem>
  1472.       </varlistentry>
  1473.      </variablelist>
  1474.     </para>
  1475.     <para>
  1476.      The constraint mode for every Constraint always has an initial
  1477.      default value which is set for that Constraint at the beginning
  1478.      of a transaction.
  1479.      <variablelist>
  1480.       <varlistentry>
  1481.        <term>INITIALLY IMMEDIATE</term>
  1482.        <listitem>
  1483. <para>
  1484.  means that, as of the start of the transaction,
  1485.  the Constraint must be checked for violation of its rule after the
  1486.  execution of every SQL statement.
  1487. </para>
  1488.        </listitem>
  1489.       </varlistentry>
  1490.       <varlistentry>
  1491.        <term>INITIALLY DEFERRED</term>
  1492.        <listitem>
  1493. <para>
  1494.  means that, as of the start of the transaction,
  1495.  checking of the Constraint may be deferred until some later time,
  1496.  but no later than the end of the current transaction.</para>
  1497.        </listitem>
  1498.       </varlistentry>
  1499.      </variablelist>
  1500.     </para>
  1501.    </refsect3>
  1502.    
  1503.    
  1504.    <refsect3 id="R3-SQL-CHECK-4">
  1505.     <refsect3info>
  1506.      <date>1998-09-11</date>
  1507.     </refsect3info>
  1508.     <title>
  1509.      CHECK clause
  1510.     </title>
  1511.     <para>
  1512.      SQL92 specifies some additional capabilities for CHECK in either
  1513. table or column constraints.
  1514.     </para>
  1515. <!--
  1516. Constraints associated with domains do not need to be mentioned here,
  1517. even though it is the case that a domain constraint may possibly
  1518. affect a column or a table.
  1519. - Thomas 1998-08-16
  1520.     <para>
  1521.      A CHECK constraint is either a table constraint, a column
  1522.      constraint or a domain constraint.
  1523.     </para> 
  1524. -->
  1525.     <para>
  1526.      table constraint definition:
  1527.      <synopsis>
  1528. [ CONSTRAINT name ] CHECK ( VALUE condition ) 
  1529.       [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1530.       [ [ NOT ] DEFERRABLE ]
  1531.      </synopsis>
  1532.     </para>
  1533.     <para>
  1534.      column constraint definition:
  1535.     <synopsis>
  1536. [ CONSTRAINT name ] CHECK ( VALUE condition ) 
  1537.       [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1538.       [ [ NOT ] DEFERRABLE ]
  1539.     </synopsis>
  1540.     </para>
  1541. <!--
  1542.    <para>
  1543.      domain constraint definition: 
  1544.     </para>
  1545.     <synopsis>
  1546.      [ CONSTRAINT name ] 
  1547.       CHECK ( VALUE condition ) 
  1548.       [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1549.       [ [ NOT ] DEFERRABLE ]
  1550.     </synopsis>
  1551.     <para>
  1552.      CHECK domain constraints can be defined in either
  1553.      a CREATE DOMAIN statement or an ALTER DOMAIN statement:
  1554.     </para>
  1555.     <programlisting>
  1556. CREATE DOMAIN duration AS SMALLINT 
  1557.     CONSTRAINT minutes CHECK (VALUE IN (90,120,180,240)); 
  1558. ALTER DOMAIN cities 
  1559.     ADD CONSTRAINT new_city CHECK (VALUE LIKE 'L%');
  1560.    </programlisting>
  1561. -->
  1562.    </refsect3>
  1563.    <refsect3 id="R3-SQL-PRIMARYKEY-1">
  1564.     <refsect3info>
  1565.      <date>1998-09-11</date>
  1566.     </refsect3info>
  1567.     <title>
  1568.      PRIMARY KEY clause
  1569.     </title>
  1570.     <para>
  1571.      SQL92 specifies some additional capabilities for PRIMARY KEY:
  1572.     </para>
  1573.     <para>
  1574.      Table Constraint definition:
  1575.      <synopsis>
  1576. [ CONSTRAINT name ] PRIMARY KEY ( column [, ...] ) 
  1577.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1578.     [ [ NOT ] DEFERRABLE ]
  1579.      </synopsis>
  1580.     </para>
  1581.     <para>
  1582.      Column Constraint definition: 
  1583.      <synopsis>
  1584. [ CONSTRAINT name ] PRIMARY KEY 
  1585.     [ {INITIALLY DEFERRED | INITIALLY IMMEDIATE} ]
  1586.     [ [ NOT ] DEFERRABLE ]
  1587.      </synopsis>
  1588.     </para>
  1589.    </refsect3>
  1590.   </refsect2>
  1591.  </refsect1>
  1592. </refentry>
  1593. <!-- Keep this comment at the end of the file
  1594. Local variables:
  1595. mode: sgml
  1596. sgml-omittag:nil
  1597. sgml-shorttag:t
  1598. sgml-minimize-attributes:nil
  1599. sgml-always-quote-attributes:t
  1600. sgml-indent-step:1
  1601. sgml-indent-data:t
  1602. sgml-parent-document:nil
  1603. sgml-default-dtd-file:"../reference.ced"
  1604. sgml-exposed-tags:nil
  1605. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  1606. sgml-local-ecat-files:nil
  1607. End:
  1608. -->