how u can find the n row from a table?
Answers were Sorted based on User's Feedback
Answer / a.brahmam
select * from(select rownum r,column name,from table name)
where r=&n;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rashmi
select max(rownum) from table1 where rowid is not null
| Is This Answer Correct ? | 2 Yes | 3 No |
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 |
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 |
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 |
Answer / karunakar
select *
from employees
where rowid=(select max(rowid) a
from employees)
| Is This Answer Correct ? | 1 Yes | 5 No |
Answer / monika
select employee_id,last_name,salary
from employees
where rownum < n
ORDER by salary
| Is This Answer Correct ? | 0 Yes | 11 No |
How do I partition in sql?
Explain the uses of database trigger.
How to execute OS(operating system) command from pl/sql?
What is procedure and function in sql?
Are stored procedures faster than queries?
Types of joins?
Can I call a procedure inside a function?
scope of exception handling in plsql
What is the fastest way of accessing a row in a table?
Why stored procedures are faster than query?
What does “select count(*) from tab” result?
15 Answers IBM, Student, Wipro,
Explain the purpose of %type and %rowtype data types with the example?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)