DataBase
MariaDB 외래 키 제약 비활성화/활성화
doopang
2022. 11. 23. 15:47
// 외래 키 제약 비활성화
set foreign_key_checks = 0;
// 외래 키 제약 활성화
set foreign_key_checks = 1;