请教: 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的 并且标识下大小 按大小排 应该能实现 期待高人 ... 展开
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的 并且标识下大小 按大小排 应该能实现 期待高人 ... 展开
5个回答
展开全部
加入 NEWS 表里有 名字,年龄,生日 那么:
select * from
(
select 1 as 顺序 ,名字,年龄,生日 from news where title like '%亲人%'
union all
select 2 as 顺序,名字,年龄,生日 from news where title like '%朋友%'
) a
order by 顺序 -- 想家其他字段 就 再加上
select * from
(
select 1 as 顺序 ,名字,年龄,生日 from news where title like '%亲人%'
union all
select 2 as 顺序,名字,年龄,生日 from news where title like '%朋友%'
) a
order by 顺序 -- 想家其他字段 就 再加上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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表的结构
楼主请将(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
select * from news where title like '亲人' union select * from news where title like '朋友' order by title, id asc
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
自己定义一个排序的列
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from news where title like '亲人'
union select * from news
where title like '朋友'
order by title, id asc
union select * from news
where title like '朋友'
order by title, id asc
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询