SQL语句中UNION排序问题?
1个回答
展开全部
代码改写如下:
select a.输出字段1, a.输出字段2, a.输出字段3, ...a.输出字段n from
(select * ,1 as px from 表A where 软件名称 like '%迅雷%'
union
select * ,2 from 表A where 软件简介 like '%迅雷%') a order by a.px
如果不在意多出一个用于排序的字段“px”的话,代码可简化如下
select * ,1 as px from 表A where 软件名称 like '%迅雷%' order by 1
union
select * ,2 from 表A where 软件简介 like '%迅雷%'
***注意,因人为增加了一个排序用数字字段(第一个查询用1,第二个用2),UNION关键字的删除两个查询之间重复数据的功能会不起作用,如果需要保持删除重复记录的能力,则需要使用DISTINC关键字,例如:
select distinct a.输出字段1, a.输出字段2, a.输出字段3, ...a.输出字段n from
(select * ,1 as px from 表A where 软件名称 like '%迅雷%'
union
select * ,2 from 表A where 软件简介 like '%迅雷%') a order by a.px
上机试一试吧
select a.输出字段1, a.输出字段2, a.输出字段3, ...a.输出字段n from
(select * ,1 as px from 表A where 软件名称 like '%迅雷%'
union
select * ,2 from 表A where 软件简介 like '%迅雷%') a order by a.px
如果不在意多出一个用于排序的字段“px”的话,代码可简化如下
select * ,1 as px from 表A where 软件名称 like '%迅雷%' order by 1
union
select * ,2 from 表A where 软件简介 like '%迅雷%'
***注意,因人为增加了一个排序用数字字段(第一个查询用1,第二个用2),UNION关键字的删除两个查询之间重复数据的功能会不起作用,如果需要保持删除重复记录的能力,则需要使用DISTINC关键字,例如:
select distinct a.输出字段1, a.输出字段2, a.输出字段3, ...a.输出字段n from
(select * ,1 as px from 表A where 软件名称 like '%迅雷%'
union
select * ,2 from 表A where 软件简介 like '%迅雷%') a order by a.px
上机试一试吧
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询