JenniferF
09-15-2000, 06:18 AM
Is there a way to delete table data, but not the structure of a table - specifically the field names?
Thanks,
Jenn
Thanks,
Jenn
|
View Full Version : Deleting Table Data But Not Structure JenniferF 09-15-2000, 06:18 AM Is there a way to delete table data, but not the structure of a table - specifically the field names? Thanks, Jenn Pat Hartman 09-15-2000, 11:13 AM Run a delete query to delete the data but not the table structure. Delete * From YourTable; |