mysql 如果表、数据库不存在则创建

时间:2021-04-20 08:23:39

1、直接用 create table if not exists tablename 这样的指令来建立:

create table if not exists nagios_login(id int auto_increment primary key not null, user varchar(20), password varchar(20));
2、 从模板表创建表:

CREATE TABLE  IF NOT EXISTS TT LIKE CYX;

3、数据库不存在则创建:

create database if not exists nagios;