union all对于重复的数据也会提取出来
union 不会提取重复的数据
一个sql语句可以有多个union或者union all连接
如果要对连接表中的字段排序,把union的表当成一个子表来操作,如下:
1 2 3 4 |
select ( select id, username from a union select id, qqname as username from b) as datatable order by id |
union all对于重复的数据也会提取出来
union 不会提取重复的数据
一个sql语句可以有多个union或者union all连接
如果要对连接表中的字段排序,把union的表当成一个子表来操作,如下:
1 2 3 4 |
select ( select id, username from a union select id, qqname as username from b) as datatable order by id |