请教: SQL中的union结果优先排序问题 20

sql语句是sql="select*fromnewswheretitlelike'亲人'unionselect*fromnewswheretitlelike'朋友'ord... sql语句是
sql="select * fromnews where title like '亲人' union select * from news where title like '朋友' order by id asc "

需要实现的结果是:显示的记录中“亲人”的结果出现在“朋友”前面 就是第一个SQL结果优先显示

因为是ACCESS数据库 下面这种方式没有通过
sql="select 1 fuhao,* fromnews where title like '亲人' union select 2 fuhao,* from news where title like '朋友' order by fuhao , id "

请教高人 小弟感谢中 ......
1 楼的方法测试没有成功

sql="select 1 fuhao,* fromnews where title like '亲人' union select 2 fuhao,* from news where title like '朋友' order by fuhao , id "

感觉要是能实现区分两个SQL的 并且标识下大小 按大小排 应该能实现 期待高人 ...
展开
 我来答
wttlzx82
2011-05-10 · TA获得超过266个赞
知道答主
回答量:174
采纳率:0%
帮助的人:106万
展开全部
加入 NEWS 表里有 名字,年龄,生日 那么:
select * from
(
select 1 as 顺序 ,名字,年龄,生日 from news where title like '%亲人%'
union all
select 2 as 顺序,名字,年龄,生日 from news where title like '%朋友%'
) a
order by 顺序 -- 想家其他字段 就 再加上
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
skyfukk
2011-05-10 · TA获得超过1187个赞
知道小有建树答主
回答量:966
采纳率:100%
帮助的人:636万
展开全部
sql="declare @t table(id int,title varchar(100),fuhao varchar(100),其它列1 varchar(100),其它列2 int)insert into @t select * from news order by id select * from @t where title like '%亲人%' union select * from @t where title like '%朋友%' "

楼主请将(id int,title varchar(100),fuhao varchar(100),其它列1 varchar(100),其它列2 int)改成你的news表的结构
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2017-08-19
展开全部
SQL中的union结果优先排序问题
select * from news where title like '亲人' union select * from news where title like '朋友' order by title, id asc
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hit_lubin
2011-05-10 · TA获得超过7889个赞
知道大有可为答主
回答量:1554
采纳率:100%
帮助的人:2025万
展开全部
select * fromnews where title like '亲人' union select * from news where title like '朋友' order by id asc
自己定义一个排序的列
select * from (select 1 as sort, * from news where title like '亲人'
union select 2 as sort, * from news where title like '朋友' ) t
order by t.sort
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
柴沛文00K
2011-05-10 · TA获得超过635个赞
知道小有建树答主
回答量:1203
采纳率:0%
帮助的人:195万
展开全部
select * from news where title like '亲人'
union select * from news
where title like '朋友'
order by title, id asc
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式