projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa8a73c
)
Fix tutorial for references problem, from
[email protected]
author
Bruce Momjian
Tue, 12 Feb 2002 22:25:15 +0000
(22:25 +0000)
committer
Bruce Momjian
Tue, 12 Feb 2002 22:25:15 +0000
(22:25 +0000)
doc/src/sgml/advanced.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/advanced.sgml
b/doc/src/sgml/advanced.sgml
index 36721068f9b1978f4e1d9e4672a5ce2ab9cfe48e..7fbf1089421f9a4b430c72bbf36181ec6526dfa3 100644
(file)
--- a/
doc/src/sgml/advanced.sgml
+++ b/
doc/src/sgml/advanced.sgml
@@
-1,5
+1,5
@@
@@
-103,12
+103,12
@@
SELECT * FROM myview;
CREATE TABLE cities (
-
name
varchar(80) primary key,
+
city
varchar(80) primary key,
location point
);
CREATE TABLE weather (
- city varchar(80) references
weather
,
+ city varchar(80) references
cities
,
temp_lo int,
temp_hi int,
prcp real,