Re: better way

From: "Mark R(dot) Dingee" <mark(dot)dingee(at)cox(dot)net>
To: Lori <lorid(at)dri(dot)edu>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: better way
Date: 2005-05-27 19:11:35
Message-ID: 200505271511.35894.mark.dingee@cox.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

if your output is from a query do

insert into mytable(col1, col2, col3)
(select col_a, col_b, col_c from othertable);

or

use the copy command

ex.
copy mytable from 'filepath/filename' using delimiters '\t';

you can also use stdin as the input path.

On Friday 27 May 2005 02:28 pm, Lori wrote:
> I have a bunch of insert into statements just wondering if anyone knows
> of more succinct way of doing multiple
> Insert Into mytable(col1,col2,co3 etc) values ('one','two','three');
> without repeating the Insert Into ?
> thanks
> Lori
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Presidente|Canaco Monterrey 2005-05-27 23:25:16 CANACO te escucha ...
Previous Message Lori 2005-05-27 18:28:25 better way