mysql 如果表、数据库不存在则创建
3. 如果表不存在就建立这个表,那么可以直接用 create table if not exists tablename 这样的指令来建立,不需要先去查询表是否存在。4. 从模板表创建表:create table if not exists like old_table_name;
·
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;
更多推荐
已为社区贡献2条内容
所有评论(0)