当前位置:Gxlcms > mysql > 如何提取除最新十条记录之外的所有记录?_MySQL

如何提取除最新十条记录之外的所有记录?_MySQL

时间:2021-07-01 10:21:17 帮助过:25人阅读

select * from table1 where id not in (select top 10 Id from table1 order by inidate)

人气教程排行