I have table 1, all_countries, as follows-
id | country ------------------ 1 | USA 2 | China 3 | India 4 | France 5 | UK 6 | Australia
Try something like the following:
SELECT * FROM all_countries WHERE country NOT IN (SELECT country FROM supported_countries)