No there isn't.
To do this, you will need to add information yourself, and look up the record using that info.
For instance, you could add an "INSERT_DATE_TIME" column, and fill it in with NOW() as you add the record.
Then of course you could retrieve the most recent record with something like:
Code:
SELECT ID
FROM <MyTable>
WHERE INSERT_DATE_TIME = ( SELECT MAX(INSERT_DATE_TIME)
FROM <MyTable>
)