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;