Não é possível truncar uma tabela referenciada em uma restrição de chave estrangeira (`video_clips`.`channel_clips`, restrição` clips_fk` `` clip_id`) referências video_clips`.`clips` (`id`) em sql]

SET FOREIGN_KEY_CHECKS = 0; 

truncate table "yourTableName";

SET FOREIGN_KEY_CHECKS = 1;
Tense Tarsier