1.查询第21-30条记录 select top 10 * from sys_Module where ID >(select max(ID) from (select top 20 * from sys_Module ) as a) 查询结果:什么也 没有 1.1 执行 select max(ID) from (select top 20 * from sys_Module ) as a 发现结果为46(数据库中记录共46条) 1.2 执行select top 20 * from sys_Mo
准备工作: SQL> conn sys/root as sysdba Connected. SQL> grant select on v_$sql_plan to scott; Grant succeeded. SQL> grant select on v_$session to scott; Grant succeeded. SQL> grant select on v_$sql_plan_statistics_all to scott; Grant succeeded. SQL