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
What is view explain with example?
How do I use google cloud in sql?
What is an ndf file?
what is timestamp in mysql? : Sql dba
What is pl sql in oracle?
What is primary and foreign key?
Can %notfound return null after a fetch?
Why stored procedure is faster than query?
How do I start sql from command line?
What are % type and % rowtype?
what are all the common sql function? : Sql dba
How to test for null values?
What is the difference between sql and mysql?
What are the advantages of sql? Explain
Is left join same as join?