Q: delete first row

D

Douglas J Steele

Realistically, you shouldn't think in terms of "first row": data in tables
does not have a guaranteed order.

To delete a specific row, you should use a Delete query, specifying the
primary key for the record you want to delete.
 
O

Ofer

Use this

DELETE TableName.*
FROM TableName
WHERE TableName.FieldName=DMin("FieldName","TableName")

FieldName = The name of the field that indicate the which one is the forst row
The Min will take the first one
If you want the last record change it to max
 
Top