Another TEMP table trick

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: hackers(at)postgreSQL(dot)org (PostgreSQL-development)
Subject: Another TEMP table trick
Date: 1999-01-28 23:18:45
Message-ID: 199901282318.SAA11831@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

test=> create table test (x int);
CREATE
test=> insert into test values (1);
INSERT
test=> insert into test values (2);
INSERT 19787 1
test=> select * from test;
x
-
2
(1 row)

test=> drop table test;
DROP
test=> select * from test;
x
-
1
(1 row)

test=> drop table test;
DROP

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1999-01-28 23:32:01 Re: [HACKERS] Another TEMP table trick
Previous Message Edmund Mergl 1999-01-28 21:49:26 [Fwd: DBD::Pg::db do failed: pqReadData() Error]