We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0f8a6 commit 4d93773Copy full SHA for 4d93773
doc/src/sgml/advanced.sgml
@@ -617,7 +617,7 @@ CREATE TABLE cities (
617
);
618
619
CREATE TABLE capitals (
620
- state char(2)
+ state char(2) UNIQUE NOT NULL
621
) INHERITS (cities);
622
</programlisting>
623
</para>
@@ -631,7 +631,8 @@ CREATE TABLE capitals (
631
<type>text</type>, a native <productname>PostgreSQL</productname>
632
type for variable length character strings. The
633
<classname>capitals</> table has
634
- an extra column, <structfield>state</>, which shows their states. In
+ an additional column, <structfield>state</>, which shows its
635
+ state abbreviation. In
636
<productname>PostgreSQL</productname>, a table can inherit from
637
zero or more other tables.
638
0 commit comments