create table shujubiao( id int primary key auto_increment, 指定為i整形 name varchar(32) not null, 指定為不固定長度,最大為32為字符,不能為空 password varchar(64) not null, 指定為不固定長度,最大為64為字符,不能為空 email varchar(128) not null, 指定為不固定長度,最大為128為字符,不能為空 age tinyint unsigned not null 指定為小整型 )