mysql error 'TYPE=MyISAM'

前端 未结 4 1271
一向
一向 2020-12-01 07:22

Below query I\'m executing in Ubuntu 12, MySQL 5.1 version and receiving error as mentioned:

CREATE TABLE mantis_config_table (
    config_id VARCHAR(64) NOT         


        
4条回答
  •  生来不讨喜
    2020-12-01 07:47

    Replace

    TYPE=MyISAM

    with

    ENGINE=MyISAM

    The problem was "TYPE=MyISAM" which should be "ENGINE=MyISAM" as per MySQL version updates - a simple search / replace has fix it.

提交回复
热议问题