且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

分页查找

更新时间:2022-08-20 10:20:16

sql server : select top 10 * from table1 where id not in(select top 0 id from table1 )

mysql  : select * from table1 LIMIT 0,6