Обсуждение: A question about inheritance

Поиск
Список
Период
Сортировка

A question about inheritance

От
li li
Дата:
Hi,
   As we can see all tuples of a child table when scanning parent table,
I'm confused about if that means there are two copies that are stored on
disk, one is for child table, and the other for parent table? If so,
I have to reconsider the size of my database.
   Thanks.

Li Li


Re: A question about inheritance

От
Oliver Elphick
Дата:
On Sun, 2002-12-29 at 22:09, li li wrote:
> Hi,
>    As we can see all tuples of a child table when scanning parent table,
> I'm confused about if that means there are two copies that are stored on
> disk, one is for child table, and the other for parent table? If so,
> I have to reconsider the size of my database.

When you select from the parent table, all rows in its children are also
selected unless you use the keyword ONLY.

So

  SELECT * FROM parent;

will show all rows of parent and children. But

  SELECT * FROM ONLY parent;

will show just the rows in the parent table.

--
Oliver Elphick                                Oliver.Elphick@lfix.co.uk
Isle of Wight, UK                             http://www.lfix.co.uk/oliver
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839  932A 614D 4C34 3E1D 0C1C
                 ========================================
     "Ye have heard that it hath been said, Thou shalt love
      thy neighbour, and hate thine enemy. But I say unto
      you, Love your enemies, bless them that curse you, do
      good to them that hate you, and pray for them which
      despitefully use you, and persecute you;"
                                     Matthew 5:43,44