I have 100 tables, 40,000 rows in each table. I want to go into MySQL and delete all rows from all tables.
...in 1 statement, if p
In command line...
USE dbname SET foreign_key_checks = 0; TRUNCATE tablename; //do this for each table you want emptied SET foreign_key_checks = 1;