Database Management Question: Download Database Management PDF

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

Tweet Share WhatsApp

Answer:

select *
from (
select rownum num , empno, ename
from emp
)
where num between 2 and 5

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

we can also use row_number function

Download Database Management PDF Read All 15 Database Management Questions
Previous QuestionNext Question
What is datapump?Which acid property will effect when we use commit in trigger?