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 table stu
select * from studentsdb.student_info;
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语句进行基本查询。
1) 在student_info表中,查询每个学生的学号、姓名、出生日期信息。
select 学号,姓名,出生日期 from student_info;
2)查询student_info表学号为 0002的学生的姓名和家庭住址。
select 姓名,家族住址 from student_info where 学号 = 0002;
3)查询student_info表所有出生日期在95年以后的女同学的姓名和出生日期。
select 姓名,出生日期 from student_info where 性别 = '女' and 出生日期 > '1995-12-31' ;
9.使用select语句进行条件查询。
1)在grade表中查询分数在70-80范围内的学生的学号、课程编号和成绩。
select 学号, 课程编号, 分数 from grade
-> where 分数>'70' and 分数<'80';
2)在grade表中查询课程编号为0002的学生的平均成绩。
select avg(分数) from grade where 学号='0002';
3)在grade表中查询选修课程编号为0003的人数和该课程有成绩的人数。
select count(*) from grade where 课程编号='0003';
select count(*) from grade where 课程编号='0003' and 课程编号 is not null;
4)查询student_info的姓名和出生日期,查询结果按出生日期从大到小排序。
select 姓名,出生日期 from student_info
-> order by 出生日期 ;
5)查询所有姓名“张”的学生的学号和姓名。
select 学号,姓名 from student_info
-> where 姓名 like '张%' ;