ACCESS 排名

来源:百度知道 编辑:UC知道 时间:2024/06/07 02:33:55
select * from abc order by id desc
像我要排名产品价格,为什么调出来后数值是第一位排名呢?奇怪
9 ,88 .85.7.65
abc产品表
id为价格字段

id可能是字符型,改为了int类型

什么叫第一位排名???

select * from abc order by id desc
这个是降序
select * from abc order by id asc
这个是升序

如果降序不是你要的.应该就是升序了