From: | Markus Schaber <schabios(at)logi-track(dot)com> |
---|---|
To: | PostgreSQL SQL <pgsql-sql(at)postgresql(dot)org> |
Subject: | Select Instead on a table |
Date: | 2004-10-28 10:03:20 |
Message-ID: | 20041028120320.4445314b@kingfisher.intern.logi-track.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hello,
[I hope this is no FAQ, but I did neither find anything about it in the
PostgreSQL FAQ, nor get any hit on RULE or INSTEAD on the mailing list
archive search¹...]
Is it possible to create a ON SELECT DO INSTEAD rule on a table?
All of my tries to do so failed by either complaining that the table is
not empty, or converting the empty table into a view, thus making
insert/update/delete impossible.
What we need is basically a table "outer" where one column is computed
via a subselect over another table "inner", something like
SELECT id, some, more, rows,
( SELECT aggregate(inner.innerrow) AS collect
WHERE inner.id=outer.id) as INNER
FROM outer;
(In reality, the inner query is a little more complicated because of
some weird ordering and limit stuff, but this is the basic idea)
Of yourse, we could (and currently do) do this via a View, but this has
two disadvantages:
- We have an extra relation floating around (outer and outer_view)
- We need to create and maintain INSERT/UPDATE/DELETE rules for outer.
We cannot change the application code that issues the queries, this is
the reason for dealing with rules and views in this case.
Thanks,
Markus Schaber
Footnotes:
¹ The latter was rather surprising to me, may be a defect in the mailing
list archive search?
--
markus schaber | dipl. informatiker
logi-track ag | rennweg 14-16 | ch 8001 zürich
phone +41-43-888 62 52 | fax +41-43-888 62 53
mailto:schabios(at)logi-track(dot)com | www.logi-track.com
From | Date | Subject | |
---|---|---|---|
Next Message | Gary Stainburn | 2004-10-28 10:16:44 | curious delay on view/where |
Previous Message | Bruno Wolff III | 2004-10-27 15:36:43 | Re: How do you compare (NULL) and (non-NULL)? |