G
Guest
I have a table that data entry is entered into through a form. Once this data
has been entered an autonumber is assigned to each record with the latest
record entered having the highest number. I want to write a query that if the
person has entered the data wrongly that they can then delete the last
entered data.
I have got this far
DELETE * FROM tblData
WHERE tblData.ID = MAXVALUE
FROM tblData
Any help would be greatly recieved
has been entered an autonumber is assigned to each record with the latest
record entered having the highest number. I want to write a query that if the
person has entered the data wrongly that they can then delete the last
entered data.
I have got this far
DELETE * FROM tblData
WHERE tblData.ID = MAXVALUE
FROM tblData
Any help would be greatly recieved