Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL:Abrufen einer ID, bei der genau 2 Zeilen dieselbe ID teilen, aber unterschiedliche Benutzer-IDs haben

Hier ist ein performanter Ansatz, der überhaupt keine Unterabfragen verwendet. Sie können Ergebnisse in Having einfach herausfiltern -Klausel mit bedingter Aggregation:

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(*) 

Ergebnis

| conversation_id |
| --------------- |
| 10              |

Auf DB Fiddle ansehen

Eine weitere mögliche Variante der bedingten Aggregation ist:

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))