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

查询数据库中表字段 字段按由大到小排序 求解决办法!

2012-04-10 
查询数据库中表字段字段按由大到小排序求解决方法!!!!查询语句SQL codeselect stateID,stepID from pro1 w

查询数据库中表字段 字段按由大到小排序 求解决方法!!!!
查询语句

SQL code
select stateID,stepID from pro1 where code=217 group by stateid,stepID order by stateid,stepID desc
查出来的结果是
stateID stepID:
1 2
1 1
1 0
2 1
2 0
我想要的结果是:
stateID stepID
2 1
2 0
1 2
1 1
1 0

上面的语句怎么改,求大虾指点!!!!!!!!!!!

[解决办法]
SQL code
order by stateID  desc,stepID
[解决办法]
SQL code
select stateID,stepID from pro1 where code=217 group by stateid,stepID order by stateid desc,stepID desc
[解决办法]
探讨
SQL code

order by stateID desc,stepID



desc 换换位置就可以了

[解决办法]
SQL code
select stateID,stepID from pro1 where code=217 group by stateid,stepID order by stateid desc,stepID 

热点排行