Re: INSERT INTO multiples

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Gregorio Diaz <gregorio_diaz(at)yahoo(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: INSERT INTO multiples
Date: 2006-07-19 15:06:50
Message-ID: 20060719150650.GQ4963@surnet.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Gregorio Diaz escribió:

> y queria saber si es posible insertar varios registros
> a la vez en esta tabla con un único comando

Hay varias formas. Por ej.
COPY temp FROM stdin;
1
2
3
4
5
\.

O tambien

INSERT INTO temp SELECT * FROM generate_values(1, 5);

Puedes usar UNION ALL tambien.

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Zuleima Lara 2006-07-19 15:29:15 to_char a to_number
Previous Message Alvaro Herrera 2006-07-19 14:56:14 Re: función csvstring_to_recordset