DISQUS

Tech-Recipes: MySQL dump import -> Error 1217 | MySQL | Tech-Recipes

  • Anonymous · 4 years ago
    i had a table that did not want ot be deleted.
    i used this to make it delete, my syntax was (just pailn sql)

    SET FOREIGN_KEY_CHECKS=0;
    DROP TABLE draairegel;
    SET FOREIGN_KEY_CHECKS=1;


    and it was gone,

    thanx for the tip!