mysql创建表之前判断表是否存在

在表名前添加 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='人员表';
上一篇:SQL优化 | MySQL问题处理案例分享三则


下一篇:如何意会微积分(正在更新ing...)