在表名前添加 if not exists,例:
create table if not exists table_02 like table_01;
CREATE TABLE if not exists table_02 (
`id` varchar(36) NOT NULL COMMENT 'id',
`name` varchar(36) DEFAULT NULL COMMENT '姓名',
`age` varchar(36) DEFAULT NULL COMMENT '年龄'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='人员表';