I would like to create table with MyISAM engine on MySQL 5.7 But I getting this error:
Error number 1030: Got Error 1 from storage engine
this is my query:
Create table `job_type(
`type_id` tinyint(2) NOT NULL AUTO_INCREMENT,
`type_name` varchar(15) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1,
primary key (`type_id`)
) ENGINE=MyISAM
How to fix this issue ?
Solution:
Azure MySQL does not support MyISAM
Creating MyISAM Table in Azure database for MySQL is enable?
Thank You