Re: Boolean product of rows in multiple tables

Поиск
Список
Период
Сортировка
От Jean-Luc Lachance
Тема Re: Boolean product of rows in multiple tables
Дата
Msg-id 3E10ACBB.DF9750E3@nsd.ca
обсуждение исходный текст
Ответ на Re: Boolean product of rows in multiple tables  (Artur Rataj <arataj@iitis.gliwice.pl>)
Ответы Re: Boolean product of rows in multiple tables  (Artur Rataj <arataj@iitis.gliwice.pl>)
Список pgsql-general
Artur,

You are right about the missing union.

Still, if most tables are alike (at least they have id and string) you
should think about
inheritance. Create the base table/class with id and string and have all
the other tables inherit from it.

Them you can do:

SELECT id from base_table t1, base_table t2 where t1.string = 'string1'
and
t2.string='string2' and t1.id=t2.id;

JLL


Artur Rataj wrote:
>
> On Mon, 30 Dec 2002, Jean-Luc Lachance wrote:
>
> > I think you are looking for UNION.
> >
>
> If there would be one component more:
>
> > SELECT id from table1 t1, table2 t2 where t1.string = 'string1' and
> > t2.string='string2' and t1.id=t2.id
> > UNION
> > SELECT id from table1 t1, table1 t2 where t1.string = 'string1' and
> > t2.string='string2' and t1.id=t2.id
> > UNION
> > SELECT id from table2 t1, table2 t2 where t1.string = 'string1' and
> > t2.string='string2' and t1.id=t2.id
>
> UNION
> SELECT id from table2 t1, table1 t2 where t1.string = 'string1' and
> t2.string='string2' and t1.id=t2.id
>
> > ;
> >
>
> it would work in the discussed case. The problem is that there can be
> several such tables and there can also be several strings, what could give a
> relatively large number of such components, and in effect it could be slow.
> A table being a sum of the several searched tables could be used with a
> single fast `select', but because an arbitrary subset of the available
> tables could possibly be searched, a relatively large number of tables being
> sums of the tables in the arbitrary subsets would then be needed.
>
> Best regards,
> Artur Rataj

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

Предыдущее
От: Medi Montaseri
Дата:
Сообщение: Re: pg and transactions
Следующее
От: "Andy Kriger"
Дата:
Сообщение: Re: lock table question