发布网友 发布时间:2022-05-03 02:50
共2个回答
懂视网 时间:2022-05-03 07:11
union----合并结果集
select sName from students
union
select tName from Teachers;
select sName from students
union all
select tName from Teachers;
MySQL数据库:合并结果集
标签:mys select 去重 使用 union all pre sel 重复 teacher
热心网友 时间:2022-05-03 04:19
select * from table1 union all select * from table2