Skip to content
Snippets Groups Projects
Commit 1a7273bd authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Rename example temp to mytemp.

parent eee5243d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment