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
Answer Posted / 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 |
Post New Answer View All Answers
Explain the working of foreign key?
What is the use of non clustered index?
How does stored procedure reduce network traffic?
what is try_catch block in procedure
How to create your own reports in sql developer?
Explain sql data types?
What is the difference between sum and count in sql?
what is union? : Sql dba
What is difference between joins and union?
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
what is the functionality of the function htmlentities? : Sql dba
What is dba in sql? : SQL DBA
Which sorts rows in sql?
What is the function that is used to transfer a pl/sql table log to a database table?
Which join is like inner join?