可以使用UNION操作符来拼接两个表的查询结果。例如:
UNION
SELECT column1, column2 FROM table1 UNION SELECT column1, column2 FROM table2;
这将会返回table1和table2中column1和column2的查询结果合并在一起。如果需要保留重复的行,则可以使用UNION ALL操作符。
table1
table2
column1
column2
UNION ALL