how u can find the n row from a table?

Answers were Sorted based on User's Feedback



how u can find the n row from a table?..

Answer / a.brahmam

select * from(select rownum r,column name,from table name)
where r=&n;

Is This Answer Correct ?    0 Yes 0 No

how u can find the n row from a table?..

Answer / rashmi

select max(rownum) from table1 where rowid is not null

Is This Answer Correct ?    2 Yes 3 No

how u can find the n row from a table?..

Answer / kris17.danger

SELECT * FROM ( SELECT ROWNUM R , A.* FROM TABLE_NAME A )
WHERE R=N;

Herer N is the number of row which need to be find.

Is This Answer Correct ?    0 Yes 1 No

how u can find the n row from a table?..

Answer / manoj gogoi

select a2.*
from
(select rownum r,a1.* from a a1)a2
where a2.r=&Any_Row_U_Want

Is This Answer Correct ?    0 Yes 2 No

how u can find the n row from a table?..

Answer / guest

select rownum,ename,sal,empno from(select ename,sal,empno from
table_name order by sal) group by rownum,ename,sal,empno
having rownum=(select count(*) from table_name

Is This Answer Correct ?    10 Yes 13 No

how u can find the n row from a table?..

Answer / anudeep

select * from employee where rowid=&n;

Is This Answer Correct ?    1 Yes 4 No

how u can find the n row from a table?..

Answer / karunakar

select *
from employees
where rowid=(select max(rowid) a
from employees)

Is This Answer Correct ?    1 Yes 5 No

how u can find the n row from a table?..

Answer / abhi

select * from employee where employeeno="1";

Is This Answer Correct ?    1 Yes 5 No

how u can find the n row from a table?..

Answer / monika

select employee_id,last_name,salary
from employees
where rownum < n
ORDER by salary

Is This Answer Correct ?    0 Yes 11 No

Post New Answer

More SQL PLSQL Interview Questions

How do you declare a user-defined exception?

0 Answers  


What is a clob in sql?

0 Answers  


Is pl sql a programming language?

0 Answers  


How do I view a sql trace file?

0 Answers  


What found sql?

0 Answers  






What does subquery mean in sql?

0 Answers  


What are sql functions? Describe in brief different types of sql functions?

0 Answers  


What are the ways on commenting in a pl/sql code?

0 Answers  


How many triggers can be applied to a table?

0 Answers  


a. Can you delete data from a View. b. If Yes, can you delete it if there are multiple tables c. If No, can you delete if there is single source table which is joining.

4 Answers   CGI, IBM,


How to Execute a Package in PL/SQL.?

0 Answers   MCN Solutions,


What does rownum mean in sql?

0 Answers  


Categories