Answers

Question and Answer:

  Home  Database Management

⟩ How to displaying the eno, ename in a table from row 2 to row 5?

select *

from (

select rownum num , empno, ename

from emp

)

where num between 2 and 5

------------------

we can also use row_number function

 205 views

More Questions for you: