Crear un serial en un Select Into

From: Mario Guerrero <chimuelo22(at)yahoo(dot)es>
To: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Crear un serial en un Select Into
Date: 2005-12-12 19:19:22
Message-ID: 20051212191922.76812.qmail@web86804.mail.ukl.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 12/12/05, Mario Guerrero <chimuelo22(at)yahoo(dot)es> wrote:
> Hola, hay alguna manera de hacer el SELECT INTO y que éste cree de
manera
> implicita el serial? Nececito el "SELCT ?????,nombre INTO TABLA_RTA
from
> alumno order by nombre;" con solo un query. Es posible haer esto?
>
> gracias.
>
> Mario Guerrero.
>
> Jaime Casanova <systemguards(at)gmail(dot)com> escribió:
> On 12/12/05, Mario Guerrero wrote:
> > hola grupo, estoy com postgres8.1 y no se como pedo hacer lo
siguiente:
> >
> > Tengo una tabla alumno
> > nombre
> > -----------
> > bbbbb
> > ccccc
> > aaaaa
> > ddddd
> >
> > Como puedo hacer de manera correcta el siguiente query
> > SELCT ?????,nombre INTO TABLA_RTA from alumno order by nombre;
> > para obtener lo siguiente:
> >
> > TABLA_RTA
> > serial | nombre
> > ----------------------
> > 1 | aaaaa
> > 2 | bbbbb
> > 3 | ccccc
> > 4 | ddddd
> >
> >
>
> create sequence seq1;
> insert into tabla_rta select nextval('seq1'), nombre from alumno
order
> by nombre;
>
> > Agr adezco de antemano su ayuda.
> >
> >
> > Mario Guerrero.
> >
>
> --
> Atentamente,
> Jaime Casanova
> (DBA: DataBase Aniquilator ;)


---------------------------------

Correo Yahoo!
Comprueba qué es nuevo, aquí
http://correo.yahoo.es

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Andres Ortiz 2005-12-12 19:55:23 Re: Obtener Direccion IP de la Maquina
Previous Message juanudo 2005-12-12 18:50:49 Re: Instlacion de PL/Perlul sobre WinXP