How to with Delete Query

  • Thread starter Thread starter Joe Cilinceon
  • Start date Start date
J

Joe Cilinceon

How would I crate a delete query to delete all records in a table. I've
tried several methods with no luck. The table has one text field and I want
to clean it out using a query.
 
Never mind I found it.

Joe said:
How would I crate a delete query to delete all records in a table.
I've tried several methods with no luck. The table has one text field
and I want to clean it out using a query.
 
How would I crate a delete query to delete all records in a table. I've
tried several methods with no luck. The table has one text field and I want
to clean it out using a query.

DELETE * FROM tablename;

John W. Vinson[MVP]
 
Back
Top