|
| Total Answers and Comments: 7 |
Last Update: August 26, 2009 Asked by: akbarali |
|
| | |
|
Submitted by: biswaranjanbehera We can select the recent row enrtered by using the query below. suppose the table name is employee; then. select * from employee where rowid=(select max(rowid) from employee). This works fine because rowid is assigned for each and every record and in accending order. So the recent record's rowid is the man (rowid). Please send feedback with any concern.
Above answer was rated as good by the following members: harit79, laura_love, sreekanth009, sandeep549 | Go To Top
|