首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

数据查询排序有关问题

2012-02-15 
数据查询排序问题请问一个语句,select [Industryname] as 行业名称,sum([allpile]) as 余额 FROM t_loanex

数据查询排序问题
请问一个语句,
select [Industryname] as 行业名称, sum([allpile]) as 余额 FROM t_loanexpand where Industryname in('煤炭行业','焦炭行业','钢铁行业','电解行业','水泥行业','其他',
'所有行业') group by [Industryname]

如何可以实现查询出来的列表,"其他"和"所有行业"总在最后.

[解决办法]

SQL code
select    [Industryname] as 行业名称,    sum([allpile]) as 余额FROM t_loanexpand    where Industryname in('煤炭行业','焦炭行业','钢铁行业','电解行业','水泥行业','其他','所有行业')     group by [Industryname]    order by charindex(Industryname,'其他所有行业') 

热点排行