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 fa8a73c commit 28108b3Copy full SHA for 28108b3
doc/src/sgml/advanced.sgml
@@ -1,5 +1,5 @@
1
<!--
2
-$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.26 2001/11/23 21:08:51 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.27 2002/02/12 22:25:15 momjian Exp $
3
-->
4
5
<chapter id="tutorial-advanced">
@@ -103,12 +103,12 @@ SELECT * FROM myview;
103
104
<programlisting>
105
CREATE TABLE cities (
106
- name varchar(80) primary key,
+ city varchar(80) primary key,
107
location point
108
);
109
110
CREATE TABLE weather (
111
- city varchar(80) references weather,
+ city varchar(80) references cities,
112
temp_lo int,
113
temp_hi int,
114
prcp real,
0 commit comments