How to with Delete Query

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.
 
J

Joe Cilinceon

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.
 
J

John Vinson

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]
 
Top