create table if not exists test_tb1 ( test_id int unsigned auto_increment, test_title varchar(100) not null, test_author varchar(40) not null, test_date date, primary key (test_id) )engine=InnoDB default charset=utf8;
其中的含意?
收起
如果不存在就创建。存在还执行create语句会报错
报告相同问题?