how to select 5 to 7 rows from a table, which contains 10 rows?
Answer Posted / sajida
select rnum, d.* from dept d, (select rownum rnum , deptno
from dept ) e
where d.deptno = e.deptno and rnum between 5 and 7;
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Explain subquery and state its properties?
Why is replication required on the sql server?
What is autocommit mode in sql server?
How to use copy and concatenate commands in SQL?
what is the Ticketing tool used in Wipro technologies at Bangalore...???
Explain transaction server implicit?
what is a check constraint?
Which are ddl commands?
What are date and time data types in ms sql server?
Why use “nolock” in sql server?
What is xml datatype?
What is use of attributehierarchyenabled? : sql server analysis services, ssas
What is the difference between cartesian product and cross join?
What is partition index in sql server?
What is the correct order of the logical query processing phases?