----- Original Message -----
From: "Mokos Péter" <mokos.peti@freemail.hu>
To: <pgsql-novice@postgresql.org>
Sent: Tuesday, March 23, 2004 1:05 PM
Subject: [NOVICE] Object Oriented features in PostgreSQL
> Can you tell me what are the Object oriented features of the program,
> and what are the main expansion plans about this topic?
You might want to check inheritance of parent tables. You can do this by
using
CREATE TABLE childtable (...) INHERITS (parenttable);
chris