ACCESS排序问题
时间:2011-03-01 来源:Now
明明按照
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就可以了
相关阅读 更多 +
时间:2011-03-01 来源:Now
明明按照
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就可以了