如何合并两张表的字段有两张表A、B,都有字段name UNIQUE KEY,如何通过sql语句把A、B中的name组合到一个表里?谢谢!
mysql> select A.name from A union select B.name from B;