A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / swapna
select * from emp where rownum<121
minus (select * from empwhere rownum<100);
| Is This Answer Correct ? | 11 Yes | 6 No |
Post New Answer View All Answers
Are stored procedures faster than queries?
What are sql ddl commands?
What are the advantages of stored procedure?
What is the difference between delete and truncate commands?
Can we use commit inside a trigger?
Is pl sql useful?
Can a table have no primary key?
What is coalesce in sql?
What is a database event trigger?
how do you control the max size of a heap table? : Sql dba
What is a composite primary key?
What are sql commands?
what is a constraint? : Sql dba
What is trigger in sql? Explain
Can you join a table to itself?