I'm using Hibernate ( version "5.4.24.Final" ) and when applying its property "hibernate.hbm2ddl.auto" there is a strange SQL query executed:
drop table if exists Student;
create table Student (id integer not null, colour varchar(255), name varchar(255), primary key (id)) type=MyISAM
and the type=MyISAM is not recognised by SQL server which shows this error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type=MyISAM' at line 1.
Could anyone give me an help?