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

Wo A =1 UND A =2 0-Zeilen-Problem zurückgibt - (Kurze Mysql-Frage)

Für eine bestimmte Zeile darf das Tag nicht sowohl 17 als auch 31 sein. Du brauchst

SELECT id 
FROM   table 
WHERE  Tag in (17, 31) 
GROUP  BY id 
HAVING COUNT(DISTINCT Tag) = 2