第3次作业-SQL语句的基本使用2(修改表-基本查询)

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  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 student_info 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-00-00';

9.使用select语句进行条件查询。

(1)在grade表中查询分数在70-80范围内的学生的学号、课程编号和成绩。

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

(2)在grade表中查询课程编号为0002的学生的平均成绩。

select avg(分数) as 平均分数 from grade where 课程编号=0002;

(3)在grade表中查询选修课程编号为0003的人数和该课程有成绩的人数。

select count(课程编号) as 课程人数 from grade where 课程编号=0003;
select count(课程编号) as 有成绩人数 from grade where 课程编号=0003 and 分数 is not null;

(4)查询student_info的姓名和出生日期,查询结果按出生日期从大到小排序。

select 姓名,出生日期 from student_info order by 出生日期 desc;

(5)查询所有姓名“张”的学生的学号和姓名。

select 学号,姓名 from student_info where 姓名 like "张%";
posted @   刘sir。  阅读(310)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端
点击右上角即可分享
微信分享提示