Sim você pode:
SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table1;
TRUNCATE table2;
SET FOREIGN_KEY_CHECKS = 1;
Com essas instruções, você corre o risco de deixar entrar linhas em suas tabelas que não aderem à
FOREIGN KEY
restrições. SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table1;
TRUNCATE table2;
SET FOREIGN_KEY_CHECKS = 1;
FOREIGN KEY
restrições.