mybatis 动态生成表和字段,适用于分表操作
create table IF NOT EXISTS `NewTable` ( id int not null AUTO_INCREMENT , author_id int not null, primary key (id))上面SQL是建立表,若将它作为mybatis 动态判断生成表,附上代码 create table IF NOT EXISTS ${tableName