Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / ajit

select Ename, empno, rn
from (select rownum rn, ename, empno
from emp)
where rn between &gno and &gno

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / ajit nayak

select rn, ename
from (select rownum rn, ename
from emp)
where rn between 3 and 7;

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / sagar sananse

with admitCTE(AdmissionId,PatientId,RN) as
(
select AdmissionId,PatientId,Row_number() over (order by AdmissionId) as RN from tempadmit
)
select * from admitCTE where RN between 101 and 120

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / jayanth

select * from (select a.*, row_number() over (order by empno) rn from emp a) where rn between 100 and 120;

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / nancy

select * from (
select tn.*, rownum rd from emp tn ) where rd between 100 and 200;

or

select * From (select tn.* from emp tn where rownum <201
minus
select tn.* from emp tn where rownum <100)

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / manjunath

select level from dual connect by level<=150
minus select from dual connect by level<=120;

Is This Answer Correct ?    0 Yes 0 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / sravan

select * from emp where rownum<151
minus(select * from emp where rownum<121)

Is This Answer Correct ?    13 Yes 14 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / bhargav

SELECT * FROM
(
SELECT Row_Number() OVER (ORDER BY emp_id, emp_name) as
emp_name
FROM employees
) as a
where rowid >100 AND rowid<121

Is This Answer Correct ?    0 Yes 1 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / gourav

SELECT * FROM EMPLOYEES
WHERE EMPLOYEE_ID BETWEEN 120 AND 150;

Is This Answer Correct ?    2 Yes 5 No

A table has 150 records. How do you retrieve 100th row to 120th row from that table ?..

Answer / sum

select * from employees where rownum between 100 and 120

Is This Answer Correct ?    2 Yes 15 No

Post New Answer

More SQL PLSQL Interview Questions

How is a process of pl/sql compiled?

0 Answers  


which will fire first ? Trigger or Constraint

24 Answers   i2, IBM,


If i can use sys.check_constraints to display my constraints from my database using sql server 2005, how can i display then if i am using sql server 2000????

0 Answers  


What is the difference between row level and statement level trigger?

0 Answers  


Can two tables have same primary key?

0 Answers  


how to findout the 100th maximum salary

28 Answers   Amdocs,


How do I view a sql database?

0 Answers  


How we can update the view?

0 Answers  


Is record in oracle pl sql?

0 Answers  


What is pl sql in dbms?

0 Answers  


What is nvarchar in sql?

0 Answers  


What are the different parts of a package?

0 Answers  


Categories