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 |
When are we going to use truncate and delete?
What happens if a procedure that updates a column of table X is called in a database trigger of the same table ?
how would concatenate strings in mysql? : Sql dba
How many types of triggers exist in pl/sql?
25.67,-1 Trunc = 20 Round= 30 HOW????
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
What is a heap in sql?
What is an index and types of indexes. How many number of indexes can be used per table ?
12 Answers Accenture, BirlaSoft, Cognizant, CTS, Symphony,
how can i create a user defined datatype
what is bcp? When is it used?
Explian rowid, rownum? What are the psoducolumns we have?
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)