Any one have a clue on how to delete the most first recorde..dont know if that makes since..
ok I have a database with a table called chatterbox, in this table I have these feilds..
CID
CName
CMesg
CDate
now lets say I have 10 records in this table
- test
- test
- test
- test
- test
- test
- test
- test
- test
- test
now when I insert a record I want to delete the first record, in this case it would be record number 1.
so then it should look like this..
- test
- test
- test
- test
- test
- test
- test
- test
- test
- test
then I insert another record and it should delete record 2.
- test
- test
- test
- test
- test
- test
- test
- test
- test
- test
etc...
any ideas?