数据库怎么进行分页查询?

2025-03-29 08:07:25
推荐回答(1个)
回答1:

select top /显示条数/ * from table_A where id not in (select top /(页码-1)*显示条数/ id from table_A)