首页 >
SELECT column1, column2 FROM table1 WHERE condition UNION SELECT column1, column2 FROM table2 WHERE condition;
CREATE TABLE new_table ( column1 datatype, column2 datatype, ... ); INSERT INTO new_table SELECT column1, column2 FROM table1 WHERE condition UNION SELECT column1, column2 FROM table2 WHERE condition;