X

MySQL 移除 Foreign Key、Index

MySQL 使用 Foreign Key 會影響到 Insert 的速度, 先暫時拿掉測測看.

查看 Foreign Key 名稱

mysql> show create table test;

找到下述

  • CONSTRAINT `tag_ibfk_1` FOREIGN KEY (`test_id`) REFERENCES `test` (`test_id`) ON DELETE CASCADE ON UPDATE CASCADE

將 Foreign key(FK) 移除

命令

mysql> ALTER TABLE test DROP FOREIGN KEY `tag_ibfk_1`; # test(Table Name), tag_ibfk_1(FK name)

將 Index 移除

命令

mysql> DROP INDEX index_name ON tbl_name

相關網頁

Tsung: 對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.
Related Post