分页查询:

Top-N分析:
select rownum,last_name,salary from (select last_name,salary from employees order by salary desc) where rownum<=3; |
发的资料里面,在分页查询中说先进行where子句后才生成rownum,然后在top-n分析中如果先进行where子句,再生成的rownum就无法再被where子句来限定大小了,我觉得就不会只输出三行,但事实上是输出三行的,这要怎么理解呢?
d644d09d35bbbc6f5e1c6f316bfc3db.png
d708774fcf719a0d16ab67296e99172.png
老师,这个爆炸类里有个方法叫display_explode,下面又重新定义了个新方法也叫 display_explode,不应该起不同的名吗?