Calculated fileds in pg - Mailing list pgsql-general

From Jean-Christian Imbeault
Subject Calculated fileds in pg
Date
Msg-id 3DE08AB2.3020904@mega-bucks.co.jp
Whole thread Raw
Responses Re: Calculated fileds in pg  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-general
Is it possible to set up a field during table creation to be a
"calculated" field, i.e. the value is calculated from other values.

For example:

Table A:

id   integer primary key,
B_id integer references B(id),
cost integer default 0

Table B:

id    integer primary key,
total integer -- select sum(cost) from A where B_id=id;

If not should I be looking at implementing this with a view or maybe a
trigger?

Thanks,

Jc


pgsql-general by date:

Previous
From: Aleksei Wolff
Date:
Subject: GUI for Postgres Management? PostgreSQL vs MySQL.
Next
From: Justin Clift
Date:
Subject: Re: GUI for Postgres Management? PostgreSQL vs MySQL.