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
what information is maintained within the msdb database? : Sql server administration
how many triggers you can have on a table? : Sql server database administration
Why do you need a sql server?
What do you understand by the data quality services in sql server?
Is null in sql server?
Explain trigger and trigger types?
What is sql server replication? : sql server replication
do views contain data ?
How can you check the level of fragmentation on a table?
Explain trigger and its types?
What is bit data type?
How to find out what is the default collation in a database?
What are four major operators that can be used to combine conditions on a where clause?
When would you use it?
define and explain the differences between clustered and non-clustered indexes.