In the Design window of a new query select Delete Query from the Query Menu or the Query Type button dropdown. Now add you table to delete from and if you have specific criteria select the fields and enter the criteria. If not just drag and drop the * from the table field list. This will delete all records from the table.
Typical SQL for a deleting all records is as follows: DELETE tblYourTable.*
FROM tblYourTable;
Typical SQL for a delete query with criteria:
DELETE tblYourTable.*
FROM tblYourTable
WHERE tblYourTable.Status = "Inactive";
I hope this helps you understand the Delete Query process.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.