I have table 1, all_countries, as follows-
id | country ------------------ 1 | USA 2 | China 3 | India 4 | France 5 | UK 6 | Australia
A LEFT JOIN will do that elegantly;
LEFT JOIN
SELECT a.* FROM all_countries a LEFT JOIN supported_countries s ON a.country = s.country WHERE s.id IS NULL;
Demo here.