?1. 使用SQL语句ALTER TABLE修改curriculum表的“课程名称”列,使之为空。
alter table curriculum drop 课程名称;

?2. 使用SQL语句ALTER TABLE修改grade表的“分数”列,使其数据类型为decimal(5,2)。
alter table grade modify 分数 decimal(5,2);

?3. 使用SQL语句ALTER TABLE为student_info表添加一个名为“备注”的数据列,其数据类型为varchar(50)。
alter table student_info add 备注 varchar(50);

?4. 使用SQL语句创建数据库studb,并在此数据库下创建表stu,表结构与数据与studentsdb的student_info表相同。
create database studb;
use studb;
CREATE TABLE stu
(
学号 char(4) PRIMARY KEY,
姓名 char(8) NOT NULL,
性别 char(2) NOT NULL,
出生日期 date NOT NULL,
家族住址 varchar(50)
);
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号');

?5. 使用SQL语句删除表stu中学号为0004的记录。
delete from stu where 学号='0004';

?6. 使用SQL语句更新表stud中学号为0002的家庭住址为“滨江市新建路96号”。
update stu set 家族住址='滨江市新建路96号' where 学号='0002';

?7. 删除表stud的“备注”列。
alter table stu drop 备注;

?8. 在studentsdb数据库中使用SELECT语句进行基本查询
use studentsdb;
select 学号,姓名,出生日期 from student_info;

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

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