Re: crear SERIAL en un SELCT INTO

From: Jaime Casanova <systemguards(at)gmail(dot)com>
To: Mario Guerrero <chimuelo22(at)yahoo(dot)es>
Cc: Postgres es ayuda <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: crear SERIAL en un SELCT INTO
Date: 2005-12-12 17:17:30
Message-ID: c2d9e70e0512120917m4a9ac309qe4d0828269a3a4c3@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

cc:pgsql-es-ayuda(at)postgresql(dot)org

siempre envia una copia a la lista

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!
> 1GB de capacidad gratis y más privacidad. Infórmate aquí
> http://correo.yahoo.es
>
>

--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Lenin Aguirre 2005-12-12 17:46:57 Tabla de Catologos no creada...
Previous Message juanudo 2005-12-12 17:13:14 Re: Instlacion de PL/Perlul sobre WinXP