Development/Backend
MySQL Foreign Key Constraint 무시하고 테이블 삭제하기
궁선이
2019. 5. 3. 18:14
제약 풀기
mysql> SET foreign_key_checks = 0;
mysql> drop table ...~~~
다시 제약 설정
mysql> SET foreign_key_checks = 1;