#1214 - The used table type doesn't support FULLTEXT indexes

后端 未结 6 1087
闹比i
闹比i 2020-12-01 02:31

I\'m getting an error saying that the table type doesn\'t support FULLTEXT indices. How can I achieve this?

Here\'s my table:

CREATE TABLE gamemech_c         


        
6条回答
  •  执笔经年
    2020-12-01 03:08

    *************Resolved - #1214 - The used table type doesn't support FULLTEXT indexes***************

    Its Very Simple to resolve this issue. People are answering here in very difficult words which are not easily understandable by the people who are not technical.

    So i am mentioning here steps in very simple words will resolve your issue.

    1.) Open your .sql file with Notepad by right clicking on file>Edit Or Simply open a Notepad file and drag and drop the file on Notepad and the file will be opened. (Note: Please don't change the extention .sql of file as its still your sql database. Also to keep a copy of your sql file to save yourself from any mishappening)

    2.) Click on Notepad Menu Edit > Replace (A Window will be pop us with Find What & Replace With Fields)

    3.) In Find What Field Enter ENGINE=InnoDB & In Replace With Field Enter ENGINE=MyISAM

    4.) Now Click on Replace All Button

    5.) Click CTRL+S or File>Save

    6.) Now Upload This File and I am Sure your issue will be resolved....

提交回复
热议问题