How to Select 38th row details in table without using rownum ?
Answers were Sorted based on User's Feedback
Answer / narsimharaju
By using cursors we can resolve this problem..
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / jilani555
declare
cursor c is select * from emp;
s number:=0;
begin
for i in c loop
s:=s+1;
if s=6 then
dbms_output.put_line(i.empno||' '||i.ename||' '||i.sal);
end if;
end loop;
end;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sama
select * from table_name order by some_column LIMIT 1 OFFSET 37;
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sandipan4allinterview
select * from Table where
(select row(MIN) from Table where
(select top 38 * from Table))
NOTE: This is without using the keyword "rownum" as mentioned in questions..
Code as SQL Server
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / sushant
select * from(
select rownum num, e.* from emp e)
where num=38;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / debasis mohanty
Select * from Table_name
where rownum < 39
MINUS
Select * From Table_name
Where rownum < 38;
| Is This Answer Correct ? | 3 Yes | 11 No |
ORA-12418: user string not found
CLSR-00506: Unmatched resource name prefix string is specified
NNL-00220: Statistic counter logging is currently disabled
ORA-03293: Cluster to be truncated is a HASH CLUSTER
ORA-14315: cannot merge a partition with itself
ORA-25226: dequeue failed, queue string.string is not enabled for dequeue
PCC-01300: You are not authorized to run Pro*PL/I
ORA-16218: This database is already preparing to switch over.
ORA-01276: Cannot add file string. File has an Oracle Managed Files file name.
NNO-00630: setting request-processing delay to number seconds
ORA-01531: a database already open by the instance
RMAN-20506: no backup of archivelog found