diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-08 15:27:01 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-08 15:27:01 +0000 |
commit | 1a7273bd5cda91509e23463b8d68862246011fae (patch) | |
tree | f75cfea35b4494b2e56a287307bbe7e2f1ff6f1c /src/tutorial | |
parent | eee5243dc84d3e86d36911dd58f49e5f7fc147ad (diff) | |
download | postgresql-1a7273bd5cda91509e23463b8d68862246011fae.tar.gz |
Rename example temp to mytemp.
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/basics.source | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tutorial/basics.source b/src/tutorial/basics.source index 2ccf45db06..e68bf57b4a 100644 --- a/src/tutorial/basics.source +++ b/src/tutorial/basics.source @@ -6,7 +6,7 @@ -- -- Copyright (c) 1994, Andrew Yu, University of California -- --- $Id: basics.source,v 1.2 1997/06/25 19:59:57 momjian Exp $ +-- $Id: basics.source,v 1.3 1999/07/08 15:27:01 momjian Exp $ -- --------------------------------------------------------------------------- @@ -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; |