A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answers were Sorted based on User's Feedback
Answer / laks
select * from emp where rownum<121
minus(select * from emp where rownum<101)
Is This Answer Correct ? | 34 Yes | 4 No |
Answer / swapna
select * from emp where rownum<121
minus (select * from empwhere rownum<100);
Is This Answer Correct ? | 11 Yes | 6 No |
Answer / d
select *
from (select rownum row_num
,tab.*
from table tab)
where row_num between 100 and 120
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / subhradeep
select * from employees where rownum<102
minus(select * from employees where rownum<81)
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / gourav josih
select *from employees
where employee_id between 120 and 150;
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / nayana
select * from emp where rownum<121
minus(select * from emp where rownum<100)
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arif hussain
select * from (
select ROW_NUMBER() over (order by tablename.columnname)as ronno,* from tablename )x
where ronno between 100 and 120
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mohan
select * from table_name where rownum between 100 and 120;
Is This Answer Correct ? | 2 Yes | 2 No |
Answer / anjana
Select *,row_number over(partition by departmentid order by empid)as rowid from employeeDept
where rowid between 100 and 120
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / srinivas
select * from(select <table_name>.*,rownum rn from <Table_name>) where rn between 100 and 120
Is This Answer Correct ? | 0 Yes | 0 No |
How would you reference column values before and after you have inserted and deleted triggers?
What is the function that is used to transfer a pl/sql table log to a database table?
What is the size of partition table?
Are null values same as that of zero or a blank space?
What is the Difference between Procedure and Function.Can we call a Function in a DML?
How many postgresql users are there, worldwide?
how to decrement dates by 1 in mysql? : Sql dba
Can we perform dml in function?
What is the difference between SQL and PLSQL
How to use transactions efficiently : transact sql
Can sql developer connect to db2?
How many rows can sqlite handle?