Hi there,
What you *could* do is order by date descending and get the first record:
SELECT TOP 1 * FROM mytable ORDER BY dateadded DESC
However, you probably don't want this. If two users insert a record at the same time, you run the risk of getting the wrong record back.
Take a look at the following article to see some ways to get back the record's iderntity:
http://www.adopenstatic.com/experime...autonumber.asp
Cheers,
Imar