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
Can we commit inside a trigger?
How do I save a sql query?
How do I save the results of sql query in a file?
Can you join a table to itself?
What does pl sql stand for?
Why truncate is used in sql?
Explain clause in sql?
Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.
What is file based approach?
Mention what are different methods to trace the pl/sql code?
Are stored procedures faster than dynamic sql?
When should I use nosql database?
Enlist the characteristics of pl/sql?
What are the types of records?
What is 19 null in sql?