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 |
NZE-29225: Certificate already installed.
ORA-15025: could not open disk 'string'
PLS-00605: set operators are not yet supported as an argument to a MULTISET operator
ORA-10589: Test recovery had to corrupt string data blocks in order to proceed
TNS-01300: ERROR at string
ORA-02458: HASHKEYS must be specified for a HASH CLUSTER
KUP-04054: internal error: invalid bad row number identified for bad column number
ORA-01093: ALTER DATABASE CLOSE only permitted with no sessions connected
ORA-22132: hexadecimal string does not correspond to a valid REF
SQL*Loader-00127: Invalid maximum record size
ORA-14085: partitioned table cannot have column with LONG datatype
RMAN-06527: KEEP option is not supported for backup of backup sets