Select id=1,name='李某某'
Union All Select 2,王某某
Union All Select 2,王某某
这样合并不会去重 不要all 内部会有个去重操作 但是有all时後效率比没all 高
Select id,name from table1
Union Select id,name from table2
Union Select id,name from table3
合并的语法是: select 列1,列2,列3,列n Union Select select 列1,列2,列3,列n
固定数据可以没有from table
温馨提示:内容为网友见解,仅供参考