diff options
author | Bruce Momjian | 1999-07-08 15:27:01 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-07-08 15:27:01 +0000 |
commit | c392230d71ae2bd554bfd1d853f36ad32d9e75f5 (patch) | |
tree | 591eb1fdd061617951ed1cd5e046532b9d18cbc1 | |
parent | fac352191d2fe62cda446e854f1e8384cb139090 (diff) |
Rename example temp to mytemp.
-rw-r--r-- | src/tutorial/basics.source | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tutorial/basics.source b/src/tutorial/basics.source index 0273837753..bd99e36afa 100644 --- a/src/tutorial/basics.source +++ b/src/tutorial/basics.source @@ -94,12 +94,12 @@ ORDER BY city; -- another class. ----------------------------- -SELECT * INTO TABLE temp +SELECT * INTO TABLE mytemp FROM weather WHERE city = 'San Francisco' and prcp > 0.0; -SELECT * from temp; +SELECT * from mytemp; ----------------------------- -- Aggregates @@ -185,4 +185,4 @@ SELECT * from weather; -- can no longer use those tables. ----------------------------- -DROP TABLE weather, cities, temp; +DROP TABLE weather, cities, mytemp; |