字段类型的问题,你表里字段的数据是数字,但是字段类型应该不是,将字段类型转换为数字,直接排序就可以了select * from 表名 torder by to_number(字段名) desc
降序用 desc 65条记录用top 如 select top 65 * from 表 order by 要按降序的字段 desc select top 65 * from table order by id desc