sql=select * from [channel] where id in (16,3,17,18,73)怎样按括号里的数字顺序来排序

我是从指定的表中选出固定ID的行数据,例如:我选出ID是16,3,17,18,73这几行,查询出的结果也是按照这个顺序排(即:ID是16的排在第一,ID是3的排在第二,依... 我是从指定的表中选出固定ID的行数据,例如:我选出ID是16,3,17,18,73这几行,查询出的结果也是按照这个顺序排(即:ID是16的排在第一,ID是3的排在第二,依次类推...。说白了:就是按照我括号里的ID数字顺序来排,不是按ID数字的大小排) 展开
 我来答
黑暗族野
2009-04-20 · TA获得超过623个赞
知道小有建树答主
回答量:118
采纳率:0%
帮助的人:148万
展开全部
用union效率比较慢,我多添加了一个字段可以达到你的效果,如果你不想把这个字段显示出来需要嵌套一个select 将需要的字段列出即可
-------------
select
case id when 16 then 1
when 3 then 2
when 17 then 3
when 18 then 4
when 73 then 5
end as ordid
,* from [channel] where id in (16,3,17,18,73) order by ordid asc
百度网友6eed2f8
2009-04-20 · TA获得超过5082个赞
知道大有可为答主
回答量:3423
采纳率:0%
帮助的人:3797万
展开全部
sql=
"select * from [channel] where id =16
union
select * from [channel] where id =3
union
select * from [channel] where id =17
union
select * from [channel] where id =18
union
select * from [channel] where id =73"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
庆桖松0im
2009-04-20 · TA获得超过1064个赞
知道小有建树答主
回答量:894
采纳率:0%
帮助的人:674万
展开全部
我曰,说我回答重复了。你用union all来代替union,union不对的还是会自动排序的
select * from [channel] where id =16 union all select * from [channel] where id =3 union all select * from [channel] where id =17 union all select * from [channel] where id =18 union all select * from [channel] where id =73
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式