Comment vérifier si une valeur existe dans une autre table MySQL

SELECT *
FROM tableB
WHERE ID NOT IN (
  SELECT ID FROM tableA
);
Nasty Nightingale