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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-SELECT">
  2.  <refmeta>
  3.   <refentrytitle>
  4. SELECT
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10. SELECT
  11.   </refname>
  12.   <refpurpose>
  13.    Retrieve rows from a table or view.
  14.   </refpurpose></refnamediv>
  15.  <refsynopsisdiv>
  16.   <refsynopsisdivinfo>
  17.    <date>1998-09-24</date>
  18.   </refsynopsisdivinfo>
  19.   <synopsis>
  20. SELECT [ALL|DISTINCT [ON <replaceable class="PARAMETER">column</replaceable>] ]
  21.     <replaceable class="PARAMETER">expression</replaceable> [ AS
  22.    <replaceable class="PARAMETER">name</replaceable> ] [, ...]
  23.     [ INTO [TEMP] [TABLE] <replaceable class="PARAMETER">new_table</replaceable> ]
  24.     [ FROM <replaceable class="PARAMETER">table</replaceable>
  25.    [<replaceable class="PARAMETER">alias</replaceable> ] [, ...] ]
  26.     [ WHERE <replaceable class="PARAMETER">condition</replaceable> ]
  27.     [ GROUP BY <replaceable class="PARAMETER">column</replaceable> [, ...] ]
  28.     [ HAVING <replaceable class="PARAMETER">condition</replaceable> [, ...] ]
  29.     [ { UNION [ALL] | INTERSECT | EXCEPT } <replaceable
  30.     class="PARAMETER">select</replaceable> ]
  31.     [ ORDER BY <replaceable class="PARAMETER">column</replaceable> [ ASC | DESC ] [, ...] ]
  32.     [ FOR UPDATE [OF class_name...]]
  33.     [ LIMIT count [OFFSET|, count]]
  34.   </synopsis>
  35.   
  36.   <refsect2 id="R2-SQL-SELECT-1">
  37.    <refsect2info>
  38.     <date>1998-09-24</date>
  39.    </refsect2info>
  40.    <title>
  41.     Inputs
  42.    </title>
  43.    
  44.    <para>
  45.     <variablelist>
  46.      <varlistentry>
  47.       <term>
  48.        <replaceable class="PARAMETER">expression</replaceable>
  49.       </term>
  50.       <listitem>
  51.        <para>
  52. The name of a table's column or an expression.
  53.        </para>
  54.       </listitem>
  55.      </varlistentry>
  56.      
  57.      <varlistentry>
  58.       <term>
  59.        <replaceable class="PARAMETER">name</replaceable>
  60.       </term>
  61.       <listitem>
  62.        <para>
  63. Specifies another name for a column or an expression using
  64. the AS clause. <replaceable class="PARAMETER">name</replaceable>
  65. cannot be used in the WHERE
  66. condition. It can, however, be referenced in associated
  67. ORDER BY or GROUP BY clauses.
  68.        </para>
  69.       </listitem>
  70.      </varlistentry>
  71.      
  72.     <varlistentry>
  73.      <term>
  74.      TEMP
  75.      </term>
  76.      <listitem>
  77.       <para>
  78. The table is created unique to this session, and is
  79. automatically dropped on session exit.
  80.       </para>
  81.      </listitem>
  82.     </varlistentry>
  83.      <varlistentry>
  84.       <term>
  85.        <replaceable class="PARAMETER">new_table</replaceable>
  86.       </term>
  87.       <listitem>
  88.        <para>
  89. If the INTO TABLE clause is specified, the result of the
  90. query will be stored in another table with the indicated
  91. name.
  92. The target table (<replaceable class="PARAMETER">new_table</replaceable>) will
  93. be created automatically and should not exist before this command.
  94.         Refer to <command>SELECT INTO</command> for more information.
  95. <note>
  96.  <para>
  97.   The <command>CREATE TABLE AS</command> statement will also
  98.   create a new  table from a select query.
  99.  </para>
  100. </note>
  101.        </para>
  102.       </listitem>
  103.      </varlistentry>
  104.      
  105.      <varlistentry>
  106.       <term>
  107.        <replaceable class="PARAMETER">table</replaceable>
  108.       </term>
  109.       <listitem>
  110.        <para>
  111. The name of an existing table referenced by the FROM clause.
  112.        </para>
  113.       </listitem>
  114.      </varlistentry>
  115.      
  116.      <varlistentry>
  117.       <term>
  118.        <replaceable class="PARAMETER">alias</replaceable>
  119.       </term>
  120.       <listitem>
  121.        <para>
  122. An alternate name for the preceding
  123. <replaceable class="PARAMETER">table</replaceable>.
  124. It is used for brevity or to eliminate ambiguity for joins
  125. within a single table.
  126.        </para>
  127.       </listitem>
  128.      </varlistentry>
  129.      
  130.      <varlistentry>
  131.       <term>
  132.        <replaceable class="PARAMETER">condition</replaceable>
  133.       </term>
  134.       <listitem>
  135.        <para>
  136. A boolean expression giving a result of true or false.
  137. See the WHERE clause.
  138.        </para>
  139.       </listitem>
  140.      </varlistentry>
  141.      
  142.      <varlistentry>
  143.       <term>
  144.        <replaceable class="PARAMETER">column</replaceable>
  145.       </term>
  146.       <listitem>
  147.        <para>
  148. The name of a table's column.
  149.        </para>
  150.       </listitem>
  151.      </varlistentry>
  152.      
  153.      <varlistentry>
  154.       <term>
  155.        <replaceable class="PARAMETER">select</replaceable>
  156.       </term>
  157.       <listitem>
  158.        <para>
  159. A select statement with all features except the ORDER BY clause.
  160.        </para>
  161.       </listitem>
  162.      </varlistentry>
  163.      
  164.     </variablelist>
  165.    </para>
  166.   </refsect2>
  167.   
  168.   <refsect2 id="R2-SQL-SELECT-2">
  169.    <refsect2info>
  170.     <date>1998-09-24</date>
  171.    </refsect2info>
  172.    <title>
  173.     Outputs
  174.    </title>
  175.    <para>
  176. <variablelist>
  177.  <varlistentry>
  178.   <term>
  179.    Rows
  180.   </term>
  181.   <listitem>
  182.    <para>
  183. The complete set of rows resulting from the query specification.
  184.    </para>
  185.   </listitem>
  186.  </varlistentry>
  187.  
  188.  <varlistentry>
  189.   <term>
  190.    <returnvalue><replaceable>count</replaceable></returnvalue>
  191.   </term>
  192.   <listitem>
  193.    <para>
  194. The count of rows returned by the query.
  195.    </para>
  196.   </listitem>
  197.  </varlistentry>
  198. </variablelist>
  199.    </para>
  200.   </refsect2>
  201.  </refsynopsisdiv>
  202.  
  203.  <refsect1 id="R1-SQL-SELECT-1">
  204.   <refsect1info>
  205.    <date>1998-09-24</date>
  206.   </refsect1info>
  207.   <title>
  208.    Description
  209.   </title>
  210.   <para>
  211.    <command>SELECT</command> will return rows from one or more tables.
  212.    Candidates for selection are rows which satisfy the WHERE condition;
  213.    if WHERE is omitted, all rows are candidates.</para>
  214.   <para>
  215.    <command>DISTINCT</command> will eliminate all duplicate rows from the
  216.    selection.
  217.    <command>DISTINCT ON <replaceable class="PARAMETER">column</replaceable></command> will eliminate all duplicates in the specified column; this is
  218. equivalent to using <command>GROUP BY <replaceable
  219.      class="PARAMETER">column</replaceable></command>.  <command>ALL</command> will return all candidate rows,
  220. including duplicates.</para>
  221.   <para>
  222.    The GROUP BY clause allows a user to divide a table
  223.    conceptually into groups. (See GROUP BY clause).</para>
  224.    
  225.   <para>
  226.    The HAVING clause specifies a grouped table derived by the
  227.    elimination of groups from the result of the previously
  228.    specified clause. (See HAVING clause).</para>
  229.    
  230.   <para>
  231.    The ORDER BY clause allows a user to specify that he/she
  232.    wishes the rows sorted according to the ASCending or 
  233.    DESCending mode operator. (See ORDER BY clause)</para>
  234.    
  235.   <para>
  236.    The UNION clause allows the result to be the collection of rows
  237.    returned by the queries involved. (See UNION clause).</para>
  238.    
  239.   <para>
  240.    The INTERSECT give you the rows that are common to both queries.
  241.    (See INTERSECT clause).</para>
  242.    
  243.   <para>
  244.    The EXCEPT give you the rows in the upper query not in the lower query.
  245.    (See EXCEPT clause).</para>
  246.    
  247.   <para>
  248.    The FOR UPDATE clause allows the SELECT statement to perform 
  249.    exclusive locking of selected rows.
  250.    (See EXCEPT clause).</para>
  251.    
  252.   <para>
  253.    The LIMIT...OFFSET clause allows control over which rows are
  254.    returned by the query.</para>   
  255.   <para>
  256.    You must have SELECT privilege to a table to read its values
  257.    (See <command>GRANT</command>/<command>REVOKE</command> statements).
  258. </para>
  259.    
  260.   <refsect2 id="R2-SQL-WHERE-2">
  261.    <refsect2info>
  262.     <date>1998-09-24</date>
  263.    </refsect2info>
  264.    <title>
  265.     WHERE Clause
  266.    </title>
  267.    <para>
  268.     The optional WHERE condition has the general form:
  269.     
  270.     <synopsis>
  271. WHERE <replaceable class="PARAMETER">expr</replaceable> <replaceable
  272. class="PARAMETER">ETER">c</replaceable>e<replaceable class="PARAMETER">"PAR</replaceable>replaceable> [ <replaceable
  273. class="PARAMETER">log_op</replaceable> ... ]
  274.     </synopsis>
  275.     
  276.     where <replaceable class="PARAMETER">cond_op</replaceable> can be
  277.     one of: =, &lt;, &lt;=, &gt;, &gt;= or &lt;&gt;,
  278.     a conditional operator like ALL, ANY, IN, LIKE, et cetera or a
  279.     locally-defined operator, 
  280.     and <replaceable class="PARAMETER">log_op</replaceable> can be one 
  281.     of: AND, OR, NOT.
  282.     The comparison returns either TRUE or FALSE and all
  283.     instances will be discarded
  284.     if the expression evaluates to FALSE.
  285.    </para>
  286.   </refsect2>
  287.   
  288.   <refsect2 id="R2-SQL-GROUPBY-2">
  289.    <refsect2info>
  290.     <date>1998-09-24</date>
  291.    </refsect2info>
  292.    <title>
  293.     GROUP BY Clause
  294.    </title>
  295.    <para>
  296.     GROUP BY specifies a grouped table derived by the application
  297.     of this clause:
  298.     <synopsis>
  299. GROUP BY <replaceable class="PARAMETER">column</replaceable> [, ...]
  300.     </synopsis></para>
  301.     <para>
  302.      GROUP BY will condense into a single row all rows that share the same values for the
  303.      grouped columns; aggregates return values derived from all rows that make up the group.  The value returned for an ungrouped
  304.      and unaggregated column is dependent on the order in which rows happen to be read from the database.
  305.     </para>
  306. </refsect2>
  307.     
  308.   <refsect2 id="R2-SQL-HAVING-2">
  309.    <refsect2info>
  310.     <date>1998-09-24</date>
  311.    </refsect2info>
  312.    <title>
  313.     HAVING Clause
  314.    </title>
  315.    <para>
  316.     The optional HAVING condition has the general form:
  317.     
  318.     <synopsis>
  319. HAVING <replaceable class="PARAMETER">cond_expr</replaceable>
  320.     </synopsis>
  321.     
  322.     where <replaceable class="PARAMETER">cond_expr</replaceable> is the same
  323.     as specified for the WHERE clause.</para>
  324.     
  325.    <para>
  326.     HAVING specifies a grouped table derived by the elimination
  327.     of groups from the result of the previously specified clause
  328.     that do not meet the <replaceable class="PARAMETER">cond_expr</replaceable>.</para>
  329.     
  330.    <para>
  331.     Each column referenced in 
  332. <replaceable class="PARAMETER">cond_expr</replaceable> shall unambiguously
  333.     reference a grouping column.
  334.    </para>
  335.   </refsect2>
  336.   
  337.   <refsect2 id="R2-SQL-ORDERBYCLAUSE-2">
  338.    <refsect2info>
  339.     <date>1998-09-24</date>
  340.    </refsect2info>
  341.    <title>
  342.     ORDER BY Clause
  343.    </title>
  344.    <para>
  345.     <synopsis>
  346. ORDER BY <replaceable class="PARAMETER">column</replaceable> [ ASC | DESC ] [, ...]
  347.     </synopsis></para>
  348.     
  349.    <para>
  350.     <replaceable class="PARAMETER">column</replaceable> can be either a column
  351.     name or an ordinal number.</para>
  352.    <para>
  353.     The ordinal numbers refers to the ordinal (left-to-right) position
  354.     of the column. This feature makes it possible to define an ordering
  355.     on the basis of a column that does not have a proper name.
  356.     This is never absolutely necessary because it is always possible
  357.     assign a name
  358.     to a calculated column using the AS clause, e.g.:
  359.     <programlisting>
  360. SELECT title, date_prod + 1 AS newlen FROM films ORDER BY newlen;
  361.     </programlisting></para>
  362.     
  363.    <para>
  364.     From release 6.4 of PostgreSQL, the columns in the ORDER BY clause do not need to appear in the SELECT clause.
  365.     Thus the following statement is now legal:
  366.     <programlisting>
  367. SELECT name FROM distributors ORDER BY code;
  368.     </programlisting></para>
  369.     
  370.    <para>
  371.     Optionally one may add the keyword DESC (descending)
  372.     or ASC (ascending) after each column name in the ORDER BY clause.
  373.     If not specified, ASC is assumed by default.</para>
  374.   </refsect2>
  375.   
  376.   <refsect2 id="R2-SQL-UNION-2">
  377.    <refsect2info>
  378.     <date>1998-09-24</date>
  379.    </refsect2info>
  380.    <title>
  381.     UNION Clause
  382.    </title>
  383.    <para>
  384.     <synopsis>
  385. <replaceable class="PARAMETER">table_query</replaceable> UNION [ ALL ]
  386. <replaceable class="PARAMETER">table_query</replaceable>
  387.      [ ORDER BY <replaceable class="PARAMETER">column</replaceable> [ ASC | DESC ] [, ...] ]
  388.     </synopsis>
  389.     
  390.     where
  391.     <replaceable class="PARAMETER">table_query</replaceable>
  392.     specifies any select expression without an ORDER BY clause.</para>
  393.     
  394.    <para>
  395.     The UNION clause allows the result to be the collection of rows
  396.     returned by the queries involved. (See UNION clause).
  397.     The two tables that represent the direct operands of the UNION must
  398.     have the same number of columns, and corresponding columns must be
  399.     of compatible data types.</para>
  400.     
  401.    <para>
  402.     By default, the result of UNION does not contain any duplicate rows
  403.     unless the ALL clause is specified.</para>
  404.     
  405.    <para>
  406.     Multiple UNION operators in the same SELECT statement are
  407.     evaluated left to right.
  408.     Note that the ALL keyword is not global in nature, being 
  409.     applied only for the current pair of table results.</para>
  410.     
  411.   </refsect2>
  412.   <refsect2 id="R2-SQL-INTERSECT-2">
  413.    <refsect2info>
  414.     <date>1998-09-24</date>
  415.    </refsect2info>
  416.    <title>
  417.     INTERSECT Clause
  418.    </title>
  419.    <para>
  420.     <synopsis>
  421. <replaceable class="PARAMETER">table_query</replaceable> INTERSECT
  422. <replaceable class="PARAMETER">table_query</replaceable>
  423.      [ ORDER BY <replaceable class="PARAMETER">column</replaceable> [ ASC | DESC ] [, ...] ]
  424.     </synopsis>
  425.     
  426.     where
  427.     <replaceable class="PARAMETER">table_query</replaceable>
  428.     specifies any select expression without an ORDER BY clause.</para>
  429.     
  430.    <para>
  431.     The INTERSECT clause allows the result to be all rows that are 
  432.     common to the involved queries.  (See INTERSECT clause).
  433.     The two tables that represent the direct operands of the INTERSECT must
  434.     have the same number of columns, and corresponding columns must be
  435.     of compatible data types.</para>
  436.     
  437.    <para>
  438.     Multiple INTERSECT operators in the same SELECT statement are
  439.     evaluated left to right.
  440.     </para>
  441.     
  442.   </refsect2>
  443.   <refsect2 id="R2-SQL-EXCEPT-2">
  444.    <refsect2info>
  445.     <date>1998-09-24</date>
  446.    </refsect2info>
  447.    <title>
  448.     EXCEPT Clause
  449.    </title>
  450.    <para>
  451.     <synopsis>
  452. <replaceable class="PARAMETER">table_query</replaceable> EXCEPT
  453.      <replaceable class="PARAMETER">table_query</replaceable>
  454.      [ ORDER BY <replaceable class="PARAMETER">column</replaceable> [ ASC | DESC ] [, ...] ]
  455.     </synopsis>
  456.     
  457.     where
  458.     <replaceable class="PARAMETER">table_query</replaceable>
  459.     specifies any select expression without an ORDER BY clause.</para>
  460.     
  461.    <para>
  462.     The EXCEPT clause allows the result to be rows from the upper query
  463.     that are not in the lower query.  (See EXCEPT clause).
  464.     The two tables that represent the direct operands of the EXCEPT must
  465.     have the same number of columns, and corresponding columns must be
  466.     of compatible data types.</para>
  467.     
  468.    <para>
  469.     Multiple EXCEPT operators in the same SELECT statement are
  470.     evaluated left to right.
  471.     </para>
  472.     
  473.   </refsect2>
  474. </refsect1>
  475.   
  476.  <refsect1 id="R1-SQL-SELECT-2">
  477.   <title>
  478.    Usage
  479.   </title>
  480.   <para>
  481.    To join the table <literal>films</literal> with the table
  482.    <literal>distributors</literal>:
  483.   </para>
  484.   <programlisting>
  485. SELECT f.title, f.did, d.name, f.date_prod, f.kind
  486.     FROM distributors d, films f
  487.     WHERE f.did = d.did
  488. title                    |did|name            | date_prod|kind
  489. -------------------------+---+----------------+----------+----------
  490. The Third Man            |101|British Lion    |1949-12-23|Drama
  491. The African Queen        |101|British Lion    |1951-08-11|Romantic
  492. Une Femme est une Femme  |102|Jean Luc Godard |1961-03-12|Romantic
  493. Vertigo                  |103|Paramount       |1958-11-14|Action
  494. Becket                   |103|Paramount       |1964-02-03|Drama
  495. 48 Hrs                   |103|Paramount       |1982-10-22|Action
  496. War and Peace            |104|Mosfilm         |1967-02-12|Drama
  497. West Side Story          |105|United Artists  |1961-01-03|Musical
  498. Bananas                  |105|United Artists  |1971-07-13|Comedy
  499. Yojimbo                  |106|Toho            |1961-06-16|Drama
  500. There's a Girl in my Soup|107|Columbia        |1970-06-11|Comedy
  501. Taxi Driver              |107|Columbia        |1975-05-15|Action
  502. Absence of Malice        |107|Columbia        |1981-11-15|Action
  503. Storia di una donna      |108|Westward        |1970-08-15|Romantic
  504. The King and I           |109|20th Century Fox|1956-08-11|Musical
  505. Das Boot                 |110|Bavaria Atelier |1981-11-11|Drama
  506. Bed Knobs and Broomsticks|111|Walt Disney     |          |Musical
  507.   </programlisting>
  508.   <para>
  509.    To sum the column <literal>len</literal> of all films and group
  510.    the results by <literal>kind</literal>:
  511.   </para>
  512.   <programlisting>
  513. SELECT kind, SUM(len) AS total FROM films GROUP BY kind;
  514.     kind      |total
  515.     ----------+------
  516.     Action    | 07:34
  517.     Comedy    | 02:58
  518.     Drama     | 14:28
  519.     Musical   | 06:42
  520.     Romantic  | 04:38
  521.   </programlisting>
  522.   <para>
  523.    To sum the column <literal>len</literal> of all films, group
  524.    the results by <literal>kind</literal> and show those group totals
  525.    that are less than 5 hours:
  526.   </para>
  527.   <programlisting>
  528. SELECT kind, SUM(len) AS total
  529.     FROM films
  530.     GROUP BY kind
  531.     HAVING SUM(len) < INTERVAL '5 hour';
  532.     kind      |total
  533.     ----------+------
  534.     Comedy    | 02:58
  535.     Romantic  | 04:38
  536.   </programlisting>
  537.   <para>
  538.     The following two examples are identical ways of sorting the individual
  539.    results according to the contents of the second column
  540.    (<literal>name</literal>):
  541.   </para>
  542.   <programlisting>
  543. SELECT * FROM distributors ORDER BY name;
  544. SELECT * FROM distributors ORDER BY 2;
  545.     did|name
  546.     ---+----------------
  547.     109|20th Century Fox
  548.     110|Bavaria Atelier
  549.     101|British Lion
  550.     107|Columbia
  551.     102|Jean Luc Godard
  552.     113|Luso films
  553.     104|Mosfilm
  554.     103|Paramount
  555.     106|Toho
  556.     105|United Artists
  557.     111|Walt Disney
  558.     112|Warner Bros.
  559.     108|Westward
  560.   </programlisting>
  561.   <para>
  562.    This example shows how to obtain the union of the tables
  563.    <literal>distributors</literal> and
  564.    <literal>actors</literal>, restricting the results to those that begin
  565.    with letter W in each table.  Only distinct rows are to be used, so the
  566.    ALL keyword is omitted:
  567.   </para>
  568.   <programlisting>
  569.     --        distributors:                actors:
  570.     --        did|name                     id|name
  571.     --        ---+------------             --+--------------
  572.     --        108|Westward                  1|Woody Allen
  573.     --        111|Walt Disney               2|Warren Beatty
  574.     --        112|Warner Bros.              3|Walter Matthau
  575.     --        ...                           ...
  576. SELECT distributors.name
  577.     FROM   distributors
  578.     WHERE  distributors.name LIKE 'W%'
  579. UNION
  580. SELECT actors.name
  581.     FROM   actors
  582.     WHERE  actors.name LIKE 'W%'
  583. name
  584. --------------
  585. Walt Disney
  586. Walter Matthau
  587. Warner Bros.
  588. Warren Beatty
  589. Westward
  590. Woody Allen
  591.   </programlisting>
  592.   
  593.  </refsect1>
  594.  
  595.  <refsect1 id="R1-SQL-SELECT-3">
  596.   <title>
  597.    Compatibility
  598.   </title>
  599.   <para>
  600.   </para>
  601.   
  602.   <refsect2 id="R2-SQL-SELECT-4">
  603.    <refsect2info>
  604.     <date>1998-09-24</date>
  605.    </refsect2info>
  606.    <title>
  607.     <acronym>Extensions</acronym>
  608.    </title>
  609.    <para>
  610. <productname>Postgres</productname> allows one to omit 
  611. the <command>FROM</command> clause from a query. This feature
  612. was retained from the original PostQuel query language:
  613.   <programlisting>
  614. SELECT distributors.* WHERE name = 'Westwood';
  615.     did|name
  616.     ---+----------------
  617.     108|Westward
  618.   </programlisting>
  619.    </para>
  620.   </refsect2>
  621.   <refsect2 id="R2-SQL-SELECT-5">
  622.    <refsect2info>
  623.     <date>1998-09-24</date>
  624.    </refsect2info>
  625.    <title>
  626.     <acronym>SQL92</acronym>
  627.    </title>
  628.    <para>
  629.    </para>
  630.    
  631.    <refsect3 id="R3-SQL-SELECT-1">
  632.     <refsect3info>
  633.      <date>1998-04-15</date>
  634.     </refsect3info>
  635.     <title>
  636.      SELECT Clause
  637.     </title>
  638.     <para>
  639.      In the <acronym>SQL92</acronym> standard, the optional keyword "AS"
  640.      is just noise and can be 
  641.      omitted without affecting the meaning.
  642.      The <productname>Postgres</productname> parser requires this keyword when
  643.      renaming columns because the type extensibility features lead to
  644.      parsing ambiguities
  645.      in this context.</para>
  646.      
  647.     <para>
  648.      In the <acronym>SQL92</acronym> standard, the new column name 
  649.      specified in an
  650.      "AS" clause may be referenced in GROUP BY and HAVING clauses.
  651.      This is not currently
  652.      allowed in <productname>Postgres</productname>.
  653.     </para>
  654.      
  655.     <para>
  656.      The DISTINCT ON phrase is not part of <acronym>SQL92</acronym>.
  657.     </para>
  658.    </refsect3>
  659.    <refsect3 id="R3-SQL-UNION-1">
  660.     <refsect3info>
  661.      <date>1998-09-24</date>
  662.     </refsect3info>
  663.     <title>
  664.      UNION Clause
  665.     </title>
  666.     <para>
  667.      The <acronym>SQL92</acronym> syntax for UNION allows an
  668.      additional CORRESPONDING BY clause:
  669.      <synopsis> 
  670. <replaceable class="PARAMETER">table_query</replaceable> UNION [ALL]
  671.     [CORRESPONDING [BY (<replaceable class="PARAMETER">column</replaceable> [,...])]]
  672.     <replaceable class="PARAMETER">table_query</replaceable>
  673.      </synopsis></para>
  674.     <para>
  675.      The CORRESPONDING BY clause is not supported by
  676.      <productname>Postgres</productname>.
  677.     </para>
  678.    </refsect3>
  679.    
  680.   </refsect2>
  681.  </refsect1>
  682. </refentry>
  683. <!-- Keep this comment at the end of the file
  684. Local variables:
  685. mode: sgml
  686. sgml-omittag:
  687. sgml-shorttag:t
  688. sgml-minimize-attributes:nil
  689. sgml-always-quote-attributes:t
  690. sgml-indent-step:1
  691. sgml-indent-data:t
  692. sgml-parent-document:nil
  693. sgml-default-dtd-file:"../reference.ced"
  694. sgml-exposed-tags:nil
  695. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  696. sgml-local-ecat-files:nil
  697. End:
  698. -->