これは、サブクエリをまったく使用しない、パフォーマンスの高いアプローチです。結果をHaving
で除外するだけです。 条件付き集計を使用した句:
SELECT
conversation_id
FROM assoc_user__conversation
GROUP BY conversation_id
HAVING
-- all the rows to exists only for 1000001 or 1000002 only
SUM(user_id IN (1000001, 1000002)) = COUNT(*)
結果
| conversation_id |
| --------------- |
| 10 |
可能な条件付き集計の別のバリエーションは次のとおりです。
SELECT
conversation_id
FROM assoc_user__conversation
GROUP BY conversation_id
HAVING
-- atleast one row for 1000001 to exists
SUM(user_id = 1000001) AND
-- atleast one row for 1000002 to exists
SUM(user_id = 1000002) AND
-- no row to exist for other user_id values
NOT SUM(user_id NOT IN (1000001, 1000002))