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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-ALTERTABLE">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    ALTER TABLE
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    ALTER TABLE
  11.   </refname>
  12.   <refpurpose>
  13.    Modifies table properties
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-04-15</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  22.     [ * ] ADD [ COLUMN ] <replaceable class="PARAMETER">ER">co</replaceable>BLE> <replaceable
  23.     class="PARAMETER">type</replaceable>
  24. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  25.     [ * ] RENAME [ COLUMN ] <replaceable class="PARAMETER">ER">co</replaceable>BLE> TO <replaceable
  26.     class="PARAMETER">newcolumn</replaceable>
  27. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  28.     RENAME TO <replaceable class="PARAMETER">newtable</replaceable>
  29.   </synopsis>
  30.   <refsect2 id="R2-SQL-ALTERTABLE-1">
  31.    <refsect2info>
  32.     <date>1998-04-15</date>
  33.    </refsect2info>
  34.    <title>
  35.     Inputs
  36.    </title>
  37.    <para>
  38.     <variablelist>
  39.      <varlistentry>
  40.       <term><replaceable class="PARAMETER"> table </replaceable></term>
  41.       <listitem>
  42.        <para>
  43. The name of an existing table to alter.
  44.        </para>
  45.       </listitem>
  46.      </varlistentry>
  47.      <varlistentry>
  48.       <term><replaceable class="PARAMETER"> column </replaceable></term>
  49.       <listitem>
  50.        <para>
  51. Name of a new or existing column.
  52.        </para>
  53.       </listitem>
  54.      </varlistentry>
  55.      <varlistentry>
  56.       <term><replaceable class="PARAMETER"> type </replaceable></term>
  57.       <listitem>
  58.        <para>
  59. Type of the new column.
  60.        </para>
  61.       </listitem>
  62.      </varlistentry>
  63.      <varlistentry>
  64.       <term><replaceable class="PARAMETER"> newcolumn </replaceable></term>
  65.       <listitem>
  66.        <para>
  67. New name for an existing column.
  68.        </para>
  69.       </listitem>
  70.      </varlistentry>
  71.      <varlistentry>
  72.       <term><replaceable class="PARAMETER"> newtable </replaceable></term>
  73.       <listitem>
  74.        <para>
  75. New name for an existing column.
  76.        </para>
  77.       </listitem>
  78.      </varlistentry>
  79.     </variablelist>
  80.    </para>
  81.   </refsect2>
  82.   <refsect2 id="R2-SQL-ALTERTABLE-2">
  83.    <refsect2info>
  84.     <date>1998-04-15</date>
  85.    </refsect2info>
  86.    <title>
  87.     Outputs
  88.    </title>
  89.    <para>
  90.     <variablelist>
  91.      <varlistentry>
  92.       <term><computeroutput>
  93. ALTER
  94.        </computeroutput></term>
  95.       <listitem>
  96.        <para>
  97. Message returned from column or table renaming.
  98.        </para>
  99.       </listitem>
  100.      </varlistentry>
  101.      <varlistentry>
  102.       <term><computeroutput>
  103. NEW
  104.        </computeroutput></term>
  105.       <listitem>
  106.        <para>
  107. Message returned from column addition.
  108.        </para>
  109.       </listitem>
  110.      </varlistentry>
  111.      <varlistentry>
  112.       <term><computeroutput>
  113. ERROR
  114.        </computeroutput></term>
  115.       <listitem>
  116.        <para>
  117. Message returned if table or column is not available.
  118.        </para>
  119.       </listitem>
  120.      </varlistentry>
  121.     </variablelist>
  122.    </para>
  123.   </refsect2>
  124.  </refsynopsisdiv>
  125.  <refsect1 id="R1-SQL-ALTERTABLE-1">
  126.   <refsect1info>
  127.    <date>1998-04-15</date>
  128.   </refsect1info>
  129.   <title>
  130.    Description
  131.   </title>
  132.   <para>
  133.    <command>ALTER TABLE</command> changes the definition of an existing table.
  134.    The new columns and their types are specified in the same style
  135.    and with the the same restrictions as in <command>CREATE TABLE</command>.
  136.    The RENAME clause causes the name of a table or column
  137.    to change without changing any of the data contained in
  138.    the affected table. Thus, the table or column will
  139.    remain of the same type and size after this command is
  140.    executed.
  141.   </para>
  142.   <para>
  143.    You must own the table in order to change its schema.
  144.   </para>
  145.   <refsect2 id="R2-SQL-ALTERTABLE-3">
  146.    <refsect2info>
  147.     <date>1998-04-15</date>
  148.    </refsect2info>
  149.    <title>
  150.     Notes
  151. </title>
  152.    <para>
  153.     The keyword <literal>COLUMN</literal> is noise and can be omitted.
  154.    </para>
  155.    <para>
  156.     <quote>[*]</quote> following a name of a table indicates that statement
  157.     should be run over that table and all tables below it in the
  158.     inheritance hierarchy.
  159.     The <citetitle>PostgreSQL User's Guide</citetitle> has further
  160.     information on inheritance.
  161.    </para>
  162.    <para>
  163.     Refer to <command>CREATE TABLE</command> for a further description
  164.     of valid arguments.
  165.    </para>
  166.   </refsect2>
  167.  </refsect1>
  168.  <refsect1 id="R1-SQL-ALTERTABLE-2">
  169.   <title>
  170.    Usage
  171.   </title>
  172.   <para>
  173.    To add a column of type VARCHAR to a table:
  174.    <programlisting>
  175. ALTER TABLE distributors ADD COLUMN address VARCHAR(30);
  176.    </programlisting>
  177.   </para>
  178.   <para>
  179.    To rename an existing column:
  180.    <programlisting>
  181. ALTER TABLE distributors RENAME COLUMN address TO city;
  182.    </programlisting>
  183.   </para>
  184.   <para>
  185.    To rename an existing table:
  186.    <programlisting>
  187. ALTER TABLE distributors RENAME TO suppliers;
  188.    </programlisting>
  189.   </para>
  190.  </refsect1>
  191.  <refsect1 id="R1-SQL-ALTERTABLE-3">
  192.   <title>
  193.    Compatibility
  194.   </title>
  195.   <refsect2 id="R2-SQL-ALTERTABLE-4">
  196.    <refsect2info>
  197.     <date>1998-04-15</date>
  198.    </refsect2info>
  199.    <title>
  200.     SQL92
  201.    </title>
  202.    <para>
  203.     <command>ALTER TABLE/RENAME</command>
  204.     is a <productname>Postgres</productname> language extension.
  205.    </para>
  206.    <para>
  207.     SQL92 specifies some additional capabilities for <command>ALTER TABLE</command>
  208.     statement which are not yet directly supported by
  209.     <productname>Postgres</productname>:
  210.    </para>
  211.    <variablelist>
  212.     <varlistentry>
  213.      <term>
  214.       <synopsis>
  215. ALTER TABLE <replaceable class="PARAMETER">table</replaceable> ALTER [
  216.        COLUMN ] <replaceable class="PARAMETER">column</replaceable>
  217.     SET DEFAULT <replaceable class="PARAMETER">default</replaceable>
  218. ALTER TABLE <replaceable class="PARAMETER">table</replaceable> ALTER [
  219.        COLUMN ] <replaceable class="PARAMETER">column</replaceable>
  220.     ADD [ CONSTRAINT <replaceable class="PARAMETER">>constrain</replaceable>> ] <replaceable
  221. class="PARAMETER">table-constraint</replaceable>
  222.       </synopsis>
  223.      </term>
  224.      <listitem>
  225.       <para>
  226.        Puts the default value or constraint specified into the
  227.        definition of column in the table.
  228.        See <command>CREATE TABLE</command> for the
  229.        syntax of the default and table-constraint clauses.
  230.        If a default clause already exists, it will be replaced by
  231.        the new definition. If any constraints on this column already
  232.        exist, they will be retained using a boolean AND with the new
  233.        constraint.
  234.       </para>
  235.       <para>
  236.        Currently, to set new default constraints on an existing column
  237.        the table must be recreated and reloaded:
  238.        <programlisting>
  239. CREATE TABLE temp AS SELECT * FROM distributors;
  240. DROP TABLE distributors;
  241. CREATE TABLE distributors (
  242.     did      DECIMAL(3) DEFAULT 1,
  243.     name     VARCHAR(40) NOT NULL,
  244.     city     VARCHAR(30)
  245. );
  246. INSERT INTO distributors SELECT * FROM temp;
  247. DROP TABLE temp;
  248.        </programlisting>
  249.       </para>
  250.      </listitem>
  251.     </varlistentry>
  252.     <varlistentry>
  253.      <term>
  254.       <synopsis>
  255. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  256.     DROP DEFAULT <replaceable class="PARAMETER">default</replaceable>
  257. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  258.     DROP CONSTRAINT <replaceable class="PARAMETER">constraint</replaceable> { RESTRICT | CASCADE }
  259.       </synopsis>
  260.      </term>
  261.      <listitem>
  262.       <para>
  263.        Removes the default value specified by default or the rule
  264.        specified by constraint from the definition of a table. 
  265.        If RESTRICT is specified only a constraint with no dependent
  266.        constraints can be destroyed.
  267.        If CASCADE is specified, Any constraints that are dependent on
  268.        this constraint are also dropped.
  269.       </para>
  270.       <para>
  271.        Currently, to remove a default value or constraints on an
  272.        existing column the table must be recreated and reloaded:
  273.        <programlisting>
  274. CREATE TABLE temp AS SELECT * FROM distributors;
  275. DROP TABLE distributors;
  276. CREATE TABLE distributors AS SELECT * FROM temp;
  277. DROP TABLE temp;
  278.        </programlisting>
  279.       </para>
  280.      </listitem>
  281.     </varlistentry>
  282.     <varlistentry>
  283.      <term>
  284.       <synopsis>
  285. ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
  286.     DROP [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { RESTRICT | CASCADE }
  287.       </synopsis>
  288.      </term>
  289.      <listitem>
  290.       <para>
  291.        Removes a column from a table.
  292.        If RESTRICT is specified only a column with no dependent
  293.        objects can be destroyed.
  294.        If CASCADE is specified, all objects that are dependent on
  295.        this column are also dropped.
  296.       </para>
  297.       <para>
  298.        Currently, to remove an existing column the table must be
  299.        recreated and reloaded:
  300.        <programlisting>
  301. CREATE TABLE temp AS SELECT did, city FROM distributors;    
  302. DROP TABLE distributors;
  303. CREATE TABLE distributors (
  304.     did      DECIMAL(3)  DEFAULT 1,
  305.     name     VARCHAR(40) NOT NULL,
  306. );
  307. INSERT INTO distributors SELECT * FROM temp;
  308. DROP TABLE temp;
  309.        </programlisting>
  310.       </para>
  311.      </listitem>
  312.     </varlistentry>
  313.    </variablelist>
  314.   </refsect2>
  315.  </refsect1>
  316. </refentry>
  317. <!-- Keep this comment at the end of the file
  318. Local variables:
  319. mode: sgml
  320. sgml-omittag:nil
  321. sgml-shorttag:t
  322. sgml-minimize-attributes:nil
  323. sgml-always-quote-attributes:t
  324. sgml-indent-step:1
  325. sgml-indent-data:t
  326. sgml-parent-document:nil
  327. sgml-default-dtd-file:"../reference.ced"
  328. sgml-exposed-tags:nil
  329. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  330. sgml-local-ecat-files:nil
  331. End:
  332. -->