MYSQL中ERROR 1005信息处理_MySQL
MYSQL官方提供的问题原因:
在信息中有一组【LATEST FOREIGN KEY ERROR】会有最近错误的详细描述和解决办法。
Cannot find an index in the referenced table where the referenced columns appear as the first columns, or column types in the table and the referenced table do not match for constraint.
(译:不能在“被reference的表”里找到包含“被reference字段”的索引,或者是两个关联字段类型不匹配)
以下介绍两个示例:
示例一:
create table booktype
(
btid int(5) unsigned zerofill auto_increment not null primary key,
btname varchar(100) not null unique,
btnote text
);
create table books
(
bid int(5) unsigned zerofill auto_increment not null primary key,
bname char(30) not null,
isbn char(50) not null,
author char(30) not null,
press text,
summary text,
bcount int not null default 0,
btid int,
foreign key(btid) references booktype(btid)
);
出现的报错:
ERROR 1005 (HY000): Can't create table '.ookdataooks.frm' (errno: 150)
主要问题以及解决办法是:
foreign key(btid) references booktype(btid) 中books表的 btid 是int和booktype表中的btid设置的关联字段类型不匹配,books表中btid改正成:btid int(5) unsigned zerofill ,就不会报错了,创建表和修改表地时候常常一步小小就忘记了这个.
推荐阅读
-
MYSQL中ERROR 1005信息处理_MySQL
-
Mysql:Error Code 1235,This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
-
浅析MySQL 中隐藏空间问题_MySQL
-
MySQL 中的count(*) 与 count(1) 谁更快一些?
-
mysql-5.5.28源码安装过程中错误总结_MySQL
-
(原创)MySQL 5.6导入SQL报错解决方法:ERROR 1064 (42000): ~~
-
在SQL中设置允许同时连接的用户数_MySQL
-
MySQL ERROR 1045 (28000) 错误的解决办法
-
小心陷阱!MySQL中处理Null时需注意两点
-
mysql中IFNULL,IF,CASE的区别介绍