Re: Combining two queries

Поиск
Список
Период
Сортировка
От David G Johnston
Тема Re: Combining two queries
Дата
Msg-id 1418938192282-5831391.post@n5.nabble.com
обсуждение исходный текст
Ответ на Combining two queries  (Robert DiFalco <robert.difalco@gmail.com>)
Ответы Re: Combining two queries  (Robert DiFalco <robert.difalco@gmail.com>)
Список pgsql-general
Robert DiFalco wrote
> For 2 arbitrary ids, I need a query to get two pieced of data:
>    * Are the two users friends?

This seems easy...ROW(u_id, f_id) = ROW(n1, n2)


>    * How many friends do the two users have in common.

SELECT f_id FROM [...] WHERE u_id = n1
INTERSECT
SELECT f_id FROM [...] WHERE u_id = n2

Put those into WITH/CTE and use the main query to combine them in whatever
way seems appropriate.

David J.




--
View this message in context: http://postgresql.nabble.com/Combining-two-queries-tp5831378p5831391.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


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

Предыдущее
От: Robert DiFalco
Дата:
Сообщение: Combining two queries
Следующее
От: Patrick Krecker
Дата:
Сообщение: Re: Combining two queries