select id, name1 from test.student1 union all select id, name1 from test.student2 ;
不用再套一层.
union all:不去重不排序
union 去重且排序
如何使用union
阅读 39
2022-01-27
select id, name1 from test.student1 union all select id, name1 from test.student2 ;
不用再套一层.
union all:不去重不排序
union 去重且排序
相关推荐
精彩评论(0)