mysql多表联合查询

一、相关需求

//创建student表。SQL代码如下: 

create table student (
id int(10) not null unique primary key,
name varchar(20) not null,
sex varchar(4),
birth year,
department varchar(20),
address varchar(50)
);

//创建score表。SQL代码如下:
create table score(
id int(10) not null unique primary key auto_increment,
stu_id int(10) not null,
c_name varchar(20),
grade int(10)
);

//为student表和score表增加记录
insert into student 
VALUES( 901,'张老大','男',1985,'计算机系','北京市海淀区');
insert into student 
VALUES( 902,'张老二','男',1986,'中文系','湖南');
insert into student 
VALUES( 903,'张三','女',1990,'中文系','北京');
insert into student 
VALUES( 904,'李四','男',1990,'英语系','南京');
insert into student 
VALUES( 905,'王五','女',1991,'英语系','湖北');
insert into student 
VALUES( 906,'王六','男',1988,'计算机系','宁夏');

insert into score
VALUES(NULL,901,'计算机',98);
insert into score
VALUES(NULL,901,'英语',80);
insert into score
VALUES(NULL,902,'计算机',65);
insert into score
VALUES(NULL,902,'中文',88);
insert into score
VALUES(NULL,903,'中文',95);
insert into score
VALUES(NULL,904,'计算机',70);
insert into score
VALUES(NULL,904,'英语',92);
insert into score
VALUES(NULL,905,'英语',94);
insert into score
VALUES(NULL,906,'计算机',90);
insert into score
VALUES(NULL,906,'英语',85);

二、MySQL 创建表格 

 

 

三、查询题目  

 

1.查询student表的所有记录

 

2.查询student表的第2条到4条记录

 

3.从student表查询所有学生的学号(id)、姓名(name) 和院系(department)的信息

 

4.从student表中查询计算机系和英语系的学生的信息

 

5.从student表中查询年龄33~37岁的学生信息

 

6.从student表中查询每个院系有多少人

 

7.从score表中查询每个科目的最高分

 

8.查询李四的考试科曰(c name) 和考试成绩(grade)

 

9.用连接的方式查询所有学生的信息和考试信息

 

10.计算每个学生的总成绩

 

11.计算每个考试科目的半均成绩

 

12.查询计算机成绩低于95的学生信息

 

13.查询同时参加计算机和英语考试的学生的信息

 

14.将计算机考试成绩按从高到低进行排序

 

15.从student表和score表中查询出学生的学号,然后合并查询结果

 

16.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩

 

17.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩


 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值