Commit eedfac64 authored by Peter Eisentraut's avatar Peter Eisentraut

Correct UNDER syntax.

parent 59e2bf3c
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.18 2000/12/22 18:57:49 petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.19 2000/12/30 19:11:45 petere Exp $
-->
<chapter id="advanced">
......@@ -33,9 +33,9 @@ CREATE TABLE cities (
altitude int -- (in ft)
);
CREATE TABLE capitals (
CREATE TABLE capitals UNDER cities (
state char(2)
) UNDER cities;
);
</programlisting>
In this case, an instance of capitals <firstterm>inherits</firstterm> all
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment