简单的..select..问题

表abc,字段如下:
会员编号,竞卖价格,竞卖数量,编号
先升序排列"竞卖价格",在此基础上按降序排列"竞卖数量",
也就是说,保证价格最底,而数量最高.
[116 byte] By [hnflavor-潇湘风情] at [2008-2-16]
# 1
select 会员编号,竞卖价格,竞卖数量,编号
from 表名
order by 竞卖价格 ,竞卖数量 DESC
apple800-老五 at 2007-10-23 > top of Msdn China Tech,MS-SQL Server,基础类...