create table Students(
id varchar auto_increment not null,
username varchar(30) not null,
sex varchar(30) not null,
age int(30) not null,
professional varchar(30) not null,
weight double(30) not null,
phone varchar(11) not null,
address varchar(50) not null,
primary key(id)
)
