Re: Inheritance in Postgresql ?

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Inheritance in Postgresql ?
Дата
Msg-id dcc563d10912152315w2d6993dcr126c0272d7656e0c@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Inheritance in Postgresql ?  (ABBAS SHAKEEL <shakeel.abbas.qau@gmail.com>)
Ответы Re: Inheritance in Postgresql ?
Список pgsql-admin
On Wed, Dec 16, 2009 at 12:01 AM, ABBAS SHAKEEL
<shakeel.abbas.qau@gmail.com> wrote:
> Thanks Scott
> you are right . It inherits structure only and i don't know whether to call
> to it an advantage or disadvantage that it query the children table as well
> while select. But in case of insert and update this concepts takes a new
> turn.
> How inheritance effect data?
>  Can you please briefly compare concept of inheritance in Postgres and JAVA,
> as my mind is trying to compare this with already  stored concept in mind
> about inheritance ;)

I'm no Java specialist, so can't directly compare there.  In the case
of inserts those go to the parent or, if you insert directly to them
the child tables. Updates operate on the appropriate child tables.

By defining triggers or rules, you can make inserts to the parent
table go to appropriate child tables, which is often done for
partitioning data, which is in turn the most common use for table
inheritance.

You can also select data from JUST the parent with the only keyword,
as in "select * from only parent_table".

Note that pgsql supports multiple inheritance, so that you can have a
table inherit structure from two or more parent tables as well.

Note that as of 8.4, according to the docs:
"All check constraints and not-null constraints on a parent table are
automatically inherited by its children. Other types of constraints
(unique, primary key, and foreign key constraints) are not inherited."

So for foreign keys and such, inheritance is much less useful than
regular tables.

В списке pgsql-admin по дате отправления:

Предыдущее
От: ABBAS SHAKEEL
Дата:
Сообщение: Re: Inheritance in Postgresql ?
Следующее
От: ABBAS SHAKEEL
Дата:
Сообщение: Re: Inheritance in Postgresql ?