mysql> alter table curriculum drop 课程名称;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0

alter table grade modify 分数 decimal(5,2);
Query OK, 15 rows affected (0.02 sec)

alter table student_info add 备注 varchar(50);
Query OK, 0 rows affected (0.01 sec)

desc stydent_info;
1146 - Table 'studentsdb.stydent_info' doesn't exist
mysql> desc student_info;

insert into stu(学号,姓名,性别,出生日期,家庭住址)
-> values('0001','张青平','男','2000-10-01','衡阳市东风路77号'),
-> ('0002','刘东阳','男','1998-12-09','东阳市八一北路33号'),
-> ('0003','马晓夏','女','1995-05-12','长岭市五一路763号'),
-> ('0004','钱忠理','男','1994-09-23','滨海市洞庭大道279号'),
-> ('0005','孙海洋','男','1995-04-03','长岛市解放路27号'),
-> ('0006','郭小斌','男','1997-11-10','南山市红旗路113号'),
-> ('0007','肖月玲','女','1996-12-07','东方市南京路11号'),
-> ('0008','张玲珑','女','1997-12-24','滨江市新建路97号');

delete from stu where 学号='0004';

update stu set 家庭住址='滨江市新建路96号' where 学号='0002';

alter table stu drop 备注;

use studentsdb;
select 学号,姓名,出生日期 from student_info;

select 姓名,家族住址 from student_info where 学号='0002';

select 姓名,出生日期 from student_info where 出生日期>1994-12-30 and 性别='女';

select 学号,课程编号,分数 from grade
where 分数 between 70 and 80;

Select avg(分数) from grade where 课程编号='0002';

SELECT COUNT(*) 选课人数,COUNT(分数) 有分数人数 FROM grade
WHERE 课程编号 = '0003';

select 姓名,出生日期 from student_info ORDER BY 出生日期 DESC;

select 学号,姓名 from student_info where 姓名 like '张%';
