其他分享
首页 > 其他分享> > [Err] 1214 - The used table type doesn't support FULLTEXT indexes

[Err] 1214 - The used table type doesn't support FULLTEXT indexes

作者:互联网

--
-- Table structure for table `film_text`
-- 
-- InnoDB added FULLTEXT support in 5.6.10. If you use an
-- earlier version, then consider upgrading (recommended) or 
-- changing InnoDB to MyISAM as the film_text engine
--

CREATE TABLE film_text (
  film_id SMALLINT NOT NULL,
  title VARCHAR(255) NOT NULL,
  description TEXT,
  PRIMARY KEY  (film_id),
  FULLTEXT KEY idx_title_description (title,description)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

MySQL示例数据库 Sakila 安装

标签:FULLTEXT,used,description,Err,title,text,InnoDB,film
来源: https://www.cnblogs.com/moonsoft/p/10423246.html