unionapp
(下面的 SQL 语句从 "Websites" 和 "apps" 表中选取全部不一样的country(只有不一样的值))
SELECT country FROM Websites
UNION
SELECT country FROM apps
ORDER BY country;
(UNION 只会选取不一样的值。UNION ALL 选取重复的值!)spa