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 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;
其中的含意?