Deleting Table Data But Not Structure (1 Viewer)

JenniferF

New member
Local time
Today, 19:08
Joined
Sep 12, 2000
Messages
5
Is there a way to delete table data, but not the structure of a table - specifically the field names?

Thanks,
Jenn
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 14:08
Joined
Feb 19, 2002
Messages
43,371
Run a delete query to delete the data but not the table structure.

Delete * From YourTable;
 

Users who are viewing this thread

Top Bottom