how u can find the n row from a table?

Answer Posted / vijayshanker

SELECT EMPLOYEE_ID,LAST_NAME,DEPARTMENT_ID
FROM (SELECT ROWNUM
R,EMPLOYEE_ID,LAST_NAME,DEPARTMENT_ID FROM EMPLOYEES) A
WHERE A.R=&Record_Number;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to enter binary numbers in sql statements? : Sql dba

487


Is mariadb nosql?

581


Does mysql support pl sql?

622


What is normalisation in sql?

551


What are the different type of joins in sql?

542






What is the purpose of my sql?

505


What are secondary keys?

559


What is a parameter query?

621


How to fix oracle error ora-00942: table or view does not exist

567


What is clustered index in sql?

584


What is audit logout in sql profiler?

585


Is pl sql still used?

507


table structure: ---------------- col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10 01-mar-2012 11:12:46 01-mar-2012 11:11:23 Write a query to display the result as shown below: col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10

3338


How to use sql*plus built-in timers?

576


What are the various levels of constraints?

659