Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Encontre IDs onde os valores estão apenas na matriz

SELECT id
FROM table
WHERE value IN ('green', 'orange', 'black')
      AND id NOT IN (
          SELECT id
          FROM table
          WHERE value NOT IN ('green', 'orange', 'black'))