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