Mysql soustrayez une table d'un autre

SELECT * FROM A
WHERE (field1, field2, ..., fieldN) NOT IN
( SELECT *
  FROM B
) ;
Fantastic Frog