how to select 5 to 7 rows from a table, which contains 10 rows?
Answer Posted / s. ramesh
select * from ( select rownum r, comp_name from metatest )
where r > 4 and r < 8;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is query cost in sql server?
How many primary keys are possible in a table?
What are the advantages of using cte?
between cast and convert which function would you prefer and why?
What is the purpose of the master database?
How can you find out how many rows returned in a cursor?
What is federation member?
How is sql used in sql server?
how to determine the service pack currently installed on sql server? : Sql server database administration
How do clustered indexes store data?
How to create a new schema in a database?
What is field with example?
What is repeatable read?
Does the order of columns in update statements matter?
When you use @@error and try-catch?