A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / bhargav
SELECT * FROM
(
SELECT Row_Number() OVER (ORDER BY emp_id, emp_name) as
emp_name
FROM employees
) as a
where rowid >100 AND rowid<121
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is blind sql injection?
Which is faster count (*) or count 1?
Can we commit inside a trigger?
what is a trigger? : Sql dba
What are the differences between in and exists clause?
What are the possible values that can be stored in a boolean data field?
How to select the Nth maximum salary from Table Emp in Oracle SQL Plus ?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
What jobs use sql?
What are stored procedures in mysql?
what is the use of friend function? : Sql dba
What are pl sql procedures?
which operator is used in query for pattern matching? : Sql dba
Will truncate release space?
What are different types of indexes?