学生信息表
create table studend(stu_id int primary key auto_increment comment '学生学号',stu_name varchar(20) not null comment '学生名字',mobile char(11) unique comment '手机号码',stu_sex char(3) default '男' comment '学生性别',birth date comment '出生日期',stu_time datetime comment '入学时间'
);
学生分数表
create table score(stu_id int not null comment '学生学号',course_name varchar(30) not null comment '考试科目',score decimal(3