C
cc
HOW CAN I CLEAR MULTIPLE TABLES WITH ONE QUERY?
HOW CAN I CLEAR MULTIPLE TABLES WITH ONE QUERY?
HOW CAN I CLEAR MULTIPLE TABLES WITH ONE QUERY?
HOW CAN I CLEAR MULTIPLE TABLES WITH ONE QUERY?
Since it's possible (although certainly not advisable!)
for table
names to include embedded spaces, it would be better to
use:
DoCmd.RunSQL "DELETE * FROM [" & strTblName & "]"
There's no need for the semi-colon at the end of the SQL
statement.