DBA-mysql-表
create table student(
id int(4) not null,
name char(20) not null,
age int(3) not null default '0',
dept varchar(16) default null,
);
create table student(
id int(4) not null,
name char(20) not null,
age int(3) not null default '0',
dept varchar(16) default null,
);