Re: copy table

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: copy table
Date: 2005-10-14 09:39:47
Message-ID: 20051014093947.GJ10299@webserv.wug-glas.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

am 14.10.2005, um 10:44:13 +0200 mailte Shavonne Marietta Wijesinghe folgendes:
> Hello
>
> How can i copy a table from one schema to another..

create table as select * from table

>
> Example..

Yeah!

test=# create schema foo;
CREATE SCHEMA
test=# create schema bar;
CREATE SCHEMA
test=# create table foo.test (id int);
CREATE TABLE
test=# insert into foo.test values (1);
INSERT 3381544 1
test=# create table bar.test as select * from foo.test;
SELECT
test=# select * from foo.test;
id
----
1
(1 row)

test=# select * from bar.test;
id
----
1
(1 row)

> I use pgadmin 3 to make my database in postgresql

You shold better use psql to learn sql.

Regards, Andreas
--
Andreas Kretschmer (Kontakt: siehe Header)
Heynitz: 035242/47212, D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net
=== Schollglas Unternehmensgruppe ===

In response to

  • copy table at 2005-10-14 08:44:13 from Shavonne Marietta Wijesinghe

Browse pgsql-sql by date

  From Date Subject
Next Message Anthony Molinaro 2005-10-14 11:11:20 Re: pg, mysql comparison with "group by" clause
Previous Message David Pradier 2005-10-14 09:18:30 Design problemi : using the same primary keys for inherited objects.