Re: HERENCIA

From: "Linder Poclaba" <linder(dot)poclaba(at)gmail(dot)com>
To: "Luis Fernando Curiel Cabrera" <lcuriel(at)gmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: HERENCIA
Date: 2006-07-19 23:57:52
Message-ID: 5aa69e1b0607191657s53542f2fr9738926d38463c04@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 7/19/06, Luis Fernando Curiel Cabrera <lcuriel(at)gmail(dot)com> wrote:
>
> Mi problema es el siguiente:
>
> Siguiendo el ejemplo que trae la documentación:
>
> CREATE TABLE cities (
> name text,
> population float,
> altitude int -- in feet
>
> );
>
> CREATE TABLE capitals (
> state char(2)
> ) INHERITS (cities);
>
>
> de que forma inserto las capitales:
>

Hola seguramente esperabas que cuando insertes en la tabla "cities" los
datos también se encaminaran a "capitals", pero no, la sentencia INSERT
siempre encamina los datos a la tabla especificada, entonces para insertar:

INSERT INTO capitals VALUES ('Sucre', 154.8,15,'Scr');

pero con reglas puedes redireccionar la insercion chequea esta capítulo de
la documentación

http://www.postgresql.org/docs/8.1/static/rules-update.html

Saludo :)

INSERT INTO capitals (state, name, poulation, altitude)
> VALUES ('Encino', 'Mezquitan', 12345, 9876543)
>
> Sé que quizas sea algo muy sencillo para todos, pero realmente no entendi
> esto.
>
>
> On 7/19/06, Linder Poclaba <linder(dot)poclaba(at)gmail(dot)com> wrote:
> >
> >
> >
> > On 7/19/06, Luis Fernando Curiel Cabrera < lcuriel(at)gmail(dot)com> wrote:
> > >
> > > Alguno de estudes me puede recomendar un vinculo en el que pueda leer
> > > todo lo relacionado a la herencia. Relamente tengo muchas dudas y quiero
> > > aprender como usarla.
> > >
> >
> > Hola esto te puede servir:
> >
> > http://www.postgresql.org/docs/8.1/static/ddl-inherit.html
> >
> > Saludos.
> >
> > Gracias por su ayuda.
> > >
> > > --
> > > Luis Fernando Curiel Cabrera
> > > - Professional ABACO DE BOLITAS Developer.
> > > - Certified ABACO DE BOLITAS Programmer.
> > >
> >
> >
>
>
> --
> Luis Fernando Curiel Cabrera
> - Professional ABACO DE BOLITAS Developer.
> - Certified ABACO DE BOLITAS Programmer.
>

In response to

  • Re: HERENCIA at 2006-07-19 22:17:00 from Luis Fernando Curiel Cabrera

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Linder Poclaba 2006-07-20 00:38:10 Re: Tipos times
Previous Message wilhelmtg@cantv.net 2006-07-19 23:47:13 Re: Re: Re: OPTIMIZAR QUERY