TRUNCATE TABLE `table_name1`;TRUNCATE TABLE `table_name2`;
And so on.
If you don't have permissions to truncate tables, I'd reccommend you to use: DELETE FROM `table_name`
But what I should truly reccommend is dropping all tables for the database then loading them again, which can even be faster than that.