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...


how to find the First and Last Observation from the table:
Ex: OBS Name Sal Ans like: OBS Name Sal
105 E 5000--> 105 E 5000
102 B 2000 104 D 4000
103 C 3000
101 A 1000-->
104 D 4000

Answers were Sorted based on User's Feedback



how to find the First and Last Observation from the table: Ex: OBS Name Sal Ans like: OB..

Answer / shailesh jori

select * from table_name where rowid=(select min(rowid) from table_name) or rowid=(select max(rowid) from table_name)

Is This Answer Correct ?    5 Yes 3 No

how to find the First and Last Observation from the table: Ex: OBS Name Sal Ans like: OB..

Answer / ajit

SELECT MIN(Obs)
FROM <Table_name>
UNION ALL
SELECT MAX(Obs)
from <Table_name>;

Is This Answer Correct ?    1 Yes 0 No

how to find the First and Last Observation from the table: Ex: OBS Name Sal Ans like: OB..

Answer / mahendar reddy

select *from t_name where rownum=1
union
(select *from t_name
intersect
select *from t_name where rowid=(select max(rowid)from t-name));

Is This Answer Correct ?    0 Yes 0 No

how to find the First and Last Observation from the table: Ex: OBS Name Sal Ans like: OB..

Answer / arjun

select * from tablename where rowid=1
union
( select * from tablename
intersect
select * from tablename where rowid = ( select max(rowid)
from tablename));

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More SQL PLSQL Interview Questions

Does asenumerable execute the query?

0 Answers  


how to enter numeric values as hex numbers? : Sql dba

0 Answers  


What is the difference between partitioning and sharding?

0 Answers  


What is the usage of the distinct keyword?

0 Answers  


What does select top 1 do in sql?

0 Answers  


What are all the common sql functions?

0 Answers  


What is the difference between left outer join and left join?

0 Answers  


What does closing a cursor do?

0 Answers  


What is dynamic sql in pl sql?

0 Answers  


What is difference between stored function and application function?

0 Answers  


How much does a sql dba make? : SQL DBA

0 Answers  


What is the difference between explicit and implicit cursors in oracle?

0 Answers  


Categories