时间:2021-07-01 10:21:17 帮助过:8人阅读
外键没有起作用, 经查看发现:
mysql> show variables like ‘%storage_engine%‘; +------------------------+--------+ | Variable_name | Value | +------------------------+--------+ | default_storage_engine | MyISAM | | storage_engine | MyISAM | +------------------------+--------+ 2 rows in set (0.00 sec)
使用的引擎是MyISAM. 将其设置为InnoDB.
mysql> set default_storage_engine="InnoDB" -> ; Query OK, 0 rows affected (0.00 sec)
mysql> show variables like ‘%storage_engine%‘; -- 这个只是临时设置, 当数据库断开重新链接后就会变会MyISAM
+------------------------+--------+
| Variable_name | Value |
+------------------------+--------+
| default_storage_engine | InnoDB |
| storage_engine | InnoDB |
+------------------------+--------+
2 rows in set (0.00 sec)
将MySQL的引擎持久的改成InnoDB
修改My.ini: default-storage-engine=INNODB 重新数据库
C:\Users\Administrator.DESKTOP-UHUP1G8>mysql -uroot -p
Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.53 MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql> show variables like ‘%storage_engine%‘;
+------------------------+--------+
| Variable_name | Value |
+------------------------+--------+
| default_storage_engine | InnoDB |
| storage_engine | InnoDB |
+------------------------+--------+
2 rows in set (0.00 sec)
这样在从写登录进来后也是InnoDB了
MySQL 外键索引不生效
标签:default current const monitor constrain state from 就会 variable