为了账号安全,请及时绑定邮箱和手机立即绑定

mysql5.7 创建表外键失败 求看下!!!! 折磨我一天了?

mysql5.7 创建表外键失败 求看下!!!! 折磨我一天了?

陪伴而非守候 2018-08-10 13:46:53
创建外键一直失败 ,,,,,难受死了。。。。。 还有  这个版块是可以发mysql的吧  我这还迷迷糊糊的。。。。create table trkr_admin(    id tinyint unsigned not null auto_increment primary key comment '管理员ID编号',    name CHAR(30) not null default '' comment '管理员账号',     cname CHAR(30) not null default '' comment '管理员昵称',    password char(32) not null default '' comment '管理员密码',    status  tinyint not null default '1' comment '账号状态 1开启 2关闭',    UNIQUE(name),    UNIQUE(cname),    index(name) )engine=InnoDB charset=utf8mb4;create table trkr_article(    id int unsigned not null auto_increment primary key comment '文章ID编号',     title char(20)  not null default '' comment '文章标题名称',    content varchar(16000) not null default ' '   comment '文章的内容',     bind_adminname_id tinyint unsigned not null  comment '发表文章的作者外键',     FOREIGN KEY(bind_adminname_id) REFERENCES trkr_admin(id),     FULLTEXT (title,content) WITH PARSER ngram  )engine=InnoDB charset=utf8mb4;报错提示:ERROR 1215 (HY000): Cannot add foreign key constraint
查看完整描述

2 回答

?
慕婉清6462132

TA贡献1804条经验 获得超2个赞

CREATE TABLE `trkr_admin` (    `id` TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '管理员ID编号',    `name` CHAR(30) NOT NULL DEFAULT '' COMMENT '管理员账号',    `cname` CHAR(30) NOT NULL DEFAULT '' COMMENT '管理员昵称',    `password` CHAR(32) NOT NULL DEFAULT '' COMMENT '管理员密码',    `status` TINYINT(4) NOT NULL DEFAULT '1' COMMENT '账号状态 1开启 2关闭',
    PRIMARY KEY (`id`),    UNIQUE INDEX `name` (`name`),    UNIQUE INDEX `cname` (`cname`)
)COLLATE='utf8mb4_general_ci'ENGINE=InnoDB;CREATE TABLE `trkr_article` (    `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '文章ID编号',    `title` CHAR(20) NOT NULL DEFAULT '' COMMENT '文章标题名称',    `content` VARCHAR(16000) NOT NULL DEFAULT ' ' COMMENT '文章的内容',    `bind_adminname_id` TINYINT(3) UNSIGNED NOT NULL COMMENT '发表文章的作者外键',
    PRIMARY KEY (`id`),    INDEX `bind_adminname_id` (`bind_adminname_id`),    CONSTRAINT `trkr_article_ibfk_1` FOREIGN KEY (`bind_adminname_id`) REFERENCES `trkr_admin` (`id`),
    FULLTEXT (title,content) WITH PARSER ngram
)COLLATE='utf8mb4_general_ci'ENGINE=InnoDB;

看样子像是子表字段索引没建?或者你那个解析器ngram执行有没问题


查看完整回答
反对 回复 2018-08-12
  • 2 回答
  • 0 关注
  • 976 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信