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 use of term?
What is cursor in pl sql with examples?
What is AUTH_ID and AUTH_USER in pl/sql ?
Will truncate release space?
What is the difference between mdf and ndf files?
What is the purpose of design view?
What is Materialized View? In What Scenario we Use Materialized View?
What are some emotional triggers?
what are properties of a transaction? : Sql dba
Mention what problem one might face while writing log information to a data-base table in pl/sql?
how to convert character strings to dates? : Sql dba
what are the performance and scalability characteristics of mysql? : Sql dba
What is rtm in testing?
What is the life of an sql statement?
Define concurrency control. : Transact sql