mysql error 'TYPE=MyISAM'

前端 未结 4 1263
一向
一向 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:49

    Do not use the keyword TYPE anymore. Use ENGINE instead.

    TYPE keyword is depreciated (since 5.0) and not supported in MySQL5.5

    CREATE TABLE mantis_config_table 
    ( 
       ...   
    ) 
    ENGINE = MyISAM;
    ^^^^^^--------------------- HERE
    

提交回复
热议问题