ACCESS排序问题

ACCESS排序问题

明明按照

select top 15 * from T_Product where F_IsTop=true order by F_Sort desc

出来的是16条记录

改进型

select top 15 * from T_Product where F_IsTop=true order by F_Sort,id desc 加上个不重复的ID就可以了

原文地址:https://www.cnblogs.com/hun_dan/p/1968324.html