⟩ 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
select *
from (
select rownum num , empno, ename
from emp
)
where num between 2 and 5
------------------
we can also use row_number function
What is the use of RECORD LENGTH option in EXP command?
What is the use of INCTYPE option in EXP command?
What is the use of RECORD option in EXP command?
What is the use of ROWS option in IMP command?
What is the use of INDEXES option in IMP command?
What is the use of GRANT option in IMP command?
What is the use of SHOW option in IMP command?
What is the use of FILE option in IMP command?
What is use of LOG (Ver 7) option in EXP command?
Suppose if you look at a clock and the time is 315, what is the angle between the hour and the minute hands?