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
How we can update the view?
Is id a reserved word in sql?
What is the difference between null value, zero, and blank space?
What is the purpose of the sql select top clause?
Why coalesce is used in sql?
how to write date and time literals? : Sql dba
Is postgresql a nosql database?
Is t sql a programming language?
how to calculate the difference between two dates? : Sql dba
Is a view faster than a stored procedure?
Is sqlite good enough for production?
How do you rank data in sql?
What is varchar example?
What is set transaction?
Why do we use cursors?