Re: Optimising a two column OR check

Поиск
Список
Период
Сортировка
От Ivan Voras
Тема Re: Optimising a two column OR check
Дата
Msg-id CAF-QHFWjyEOGQq5M-3PZShZHFeC0idWpHw1WPq+iQ+ErdxYWAg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Optimising a two column OR check  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Список pgsql-performance


On Sat, 12 Oct 2019 at 17:16, Andrew Gierth <andrew@tao11.riddles.org.uk> wrote:
>>>>> "Ivan" == Ivan Voras <ivoras@gmail.com> writes:
 
 Ivan> SELECT user1_id,user2_id FROM friend WHERE user1_id=42 OR user2_id=42;

To get friends of user 42:

SELECT user1_id FROM friend WHERE user2_id=42
UNION ALL
SELECT user2_id FROM friend WHERE user1_id=42;

assuming you create the (user2_id,user1_id) index, this should get you
an Append of two index-only scans. We can use UNION ALL here rather than
UNION because the table constraints ensure there are no duplicates.
 
Thanks! That's a more elegant solution for my query than what I had in mind!

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

Предыдущее
От: Andrew Gierth
Дата:
Сообщение: Re: Optimising a two column OR check
Следующее
От: Ivan Voras
Дата:
Сообщение: Re: Optimising a two column OR check