1.创建student和score表
mysql> 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)
-> );
Query OK, 0 rows affected, 1 warning (0.02 sec)
创建score表。SQL代码如下:
mysql> create table scroe(
-> id int(10) not null unique primary key auto_increment,
-> stu_id int(10) not null,
-> c_name varchar(20),
-> grade int(10)
-> );
Query OK, 0 rows affected, 3 warnings (0.02 sec)
2.为student表和score表增加记录
向student表插入记录的INSERT语句如下:
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,'计算机系', '湖南省衡阳市');
向score表插入记录的INSERT语句如下:
INSERT INTO score VALUES(NULL,901, '计算机',98);
INSERT INTO scroe VALUES(NULL,901, '英语', 80);
INSERT INTO scroe VALUES(NULL,902, '计算机',65);
INSERT INTO scroe VALUES(NULL,902, '中文',88);
INSERT INTO scroe VALUES(NULL,903, '中文',95);
INSERT INTO scroe VALUES(NULL,904, '计算机',70);
INSERT INTO scroe VALUES(NULL,904, '英语',92);
INSERT INTO scroe VALUES(NULL,905, '英语',94);
INSERT INTO scroe VALUES(NULL,906, '计算机',90);
INSERT INTO scroe VALUES(NULL,906, '英语',85);
3.查询student表的所有记录
mysql> select * from student
-> ;
+-----+-----------+------+-------+--------------+--------------------+-----+
| id | name | sex | birth | department | address | age |
+-----+-----------+------+-------+--------------+--------------------+-----+
| 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 39 |
| 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 38 |
| 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 34 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 34 |
| 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 33 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 36 |
+-----+-----------+------+-------+--------------+--------------------+-----+
6 rows in set (0.00 sec)
4.查询student表的第2条到4条记录
mysql> select * from student limit 1,3;
+-----+-----------+------+-------+------------+--------------------+
| id | name | sex | birth | department | address |
+-----+-----------+------+-------+------------+--------------------+
| 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
| 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
+-----+-----------+------+-------+------------+--------------------+
3 rows in set (0.00 sec)
5.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
mysql> select id,name,department from student;
+-----+-----------+--------------+
| id | name | department |
+-----+-----------+--------------+
| 901 | 张老大 | 计算机系 |
| 902 | 张老二 | 中文系 |
| 903 | 张三 | 中文系 |
| 904 | 李四 | 英语系 |
| 905 | 王五 | 英语系 |
| 906 | 王六 | 计算机系 |
+-----+-----------+--------------+
6 rows in set (0.00 sec)
6.从student表中查询计算机系和英语系的学生的信息
mysql> select * from student where department = "计算机系" or department = "英语系";
+-----+-----------+------+-------+--------------+--------------------+
| id | name | sex | birth | department | address |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
| 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+-----------+------+-------+--------------+--------------------+
4 rows in set (0.00 sec)
7.从student表中查询年龄33~36岁的学生信息(原表中没有年龄,所以我们给他添加年龄之后进行查询)
mysql> select * from student where age >= 33 and age <=36;
+-----+--------+------+-------+--------------+--------------------+-----+
| id | name | sex | birth | department | address | age |
+-----+--------+------+-------+--------------+--------------------+-----+
| 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 34 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 34 |
| 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 33 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 36 |
+-----+--------+------+-------+--------------+--------------------+-----+
4 rows in set (0.00 sec)
8.从student表中查询每个院系有多少人
mysql> select department,count(*) as '院系总人数' from student group by department;
+--------------+-----------------+
| department | 院系总人数 |
+--------------+-----------------+
| 计算机系 | 2 |
| 中文系 | 2 |
| 英语系 | 2 |
+--------------+-----------------+
3 rows in set (0.01 sec)
9.从score表中查询每个科目的最高分
mysql> select c_name '科目',max(grade) as '最高分' from scroe group by c_name;
+-----------+-----------+
| 科目 | 最高分 |
+-----------+-----------+
| 计算机 | 98 |
| 英语 | 94 |
| 中文 | 95 |
+-----------+-----------+
3 rows in set (0.00 sec)
10.查询李四的考试科目(c_name)和考试成绩(grade)
mysql> select name,c_name as '考试科目',grade as '考试成绩' from student left join scroe on(student.id=scroe.stu_id) where student.name='李四';
+--------+--------------+--------------+
| name | 考试科目 | 考试成绩 |
+--------+--------------+--------------+
| 李四 | 英语 | 92 |
| 李四 | 计算机 | 70 |
+--------+--------------+--------------+
2 rows in set (0.00 sec)
11.用连接的方式查询所有学生的信息和考试信息
mysql> select sc.*,st.* from scroe as sc inner join student st on(sc.stu_id=st.id);
+----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+-----+
| id | stu_id | c_name | grade | id | name | sex | birth | department | address | age |
+----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+-----+
| 1 | 901 | 计算机 | 98 | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 39 |
| 2 | 901 | 英语 | 80 | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 39 |
| 3 | 902 | 计算机 | 65 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 38 |
| 4 | 902 | 中文 | 88 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 38 |
| 5 | 903 | 中文 | 95 | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 34 |
| 6 | 904 | 计算机 | 70 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 34 |
| 7 | 904 | 英语 | 92 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 34 |
| 8 | 905 | 英语 | 94 | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 33 |
| 9 | 906 | 计算机 | 90 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 36 |
| 10 | 906 | 英语 | 85 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 36 |
+----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+-----+
10 rows in set (0.00 sec)
12.计算每个学生的总成绩
mysql> select name,sum(grade) as '总成绩' from student,scroe where(student.id=scroe.stu_id) group by name;
+-----------+-----------+
| name | 总成绩 |
+-----------+-----------+
| 张老大 | 178 |
| 张老二 | 153 |
| 张三 | 95 |
| 李四 | 162 |
| 王五 | 94 |
| 王六 | 175 |
+-----------+-----------+
6 rows in set (0.01 sec)
13.计算每个考试科目的平均成绩
mysql> select c_name as '科目',avg(grade) as '平均成绩' from scroe group by c_name;
+-----------+--------------+
| 科目 | 平均成绩 |
+-----------+--------------+
| 计算机 | 80.7500 |
| 英语 | 87.7500 |
| 中文 | 91.5000 |
+-----------+--------------+
3 rows in set (0.01 sec)
14.查询计算机成绩低于95的学生信息
mysql> select student.name,scroe.c_name,scroe.grade from student,scroe where (student.id=scroe.stu_id) and c_name='计算机' and grade<95;
+-----------+-----------+-------+
| name | c_name | grade |
+-----------+-----------+-------+
| 张老二 | 计算机 | 65 |
| 李四 | 计算机 | 70 |
| 王六 | 计算机 | 90 |
+-----------+-----------+-------+
3 rows in set (0.00 sec)
15.查询同时参加计算机和英语考试的学生的信息
mysql> select * from student,scroe a,scroe b where(student.id=a.stu_id and student.id=b.stu_id) and a.c_name='计算机' and b.c_name='英语';
+-----+-----------+------+-------+--------------+--------------------+-----+----+--------+-----------+-------+----+--------+--------+-------+
| id | name | sex | birth | department | address | age | id | stu_id | c_name | grade | id | stu_id | c_name | grade |
+-----+-----------+------+-------+--------------+--------------------+-----+----+--------+-----------+-------+----+--------+--------+-------+
| 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 39 | 1 | 901 | 计算机 | 98 | 2 | 901 | 英语 | 80 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 34 | 6 | 904 | 计算机 | 70 | 7 | 904 | 英语 | 92 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 36 | 9 | 906 | 计算机 | 90 | 10 | 906 | 英语 | 85 |
+-----+-----------+------+-------+--------------+--------------------+-----+----+--------+-----------+-------+----+--------+--------+-------+
3 rows in set (0.01 sec)
16.将计算机考试成绩按从高到低进行排序
select name,c_name,grade from student,scroe where student.id=scroe.stu_id and c_name='计算机' order b
y grade desc;
+-----------+-----------+-------+
| name | c_name | grade |
+-----------+-----------+-------+
| 张老大 | 计算机 | 98 |
| 王六 | 计算机 | 90 |
| 李四 | 计算机 | 70 |
| 张老二 | 计算机 | 65 |
+-----------+-----------+-------+
4 rows in set (0.00 sec)
17.从student表和score表中查询出学生的学号,然后合并查询结果
mysql> select student.id,stu_id,name from student,scroe where (student.id=scroe.stu_id);
+-----+--------+-----------+
| id | stu_id | name |
+-----+--------+-----------+
| 901 | 901 | 张老大 |
| 901 | 901 | 张老大 |
| 902 | 902 | 张老二 |
| 902 | 902 | 张老二 |
| 903 | 903 | 张三 |
| 904 | 904 | 李四 |
| 904 | 904 | 李四 |
| 905 | 905 | 王五 |
| 906 | 906 | 王六 |
| 906 | 906 | 王六 |
+-----+--------+-----------+
10 rows in set (0.00 sec)
18.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
mysql> select name,c_name,department,grade from student,scroe where(student.id=scroe.stu_id) and (name like
"张%" or name like "王%");
+-----------+-----------+--------------+-------+
| name | c_name | department | grade |
+-----------+-----------+--------------+-------+
| 张老大 | 计算机 | 计算机系 | 98 |
| 张老大 | 英语 | 计算机系 | 80 |
| 张老二 | 计算机 | 中文系 | 65 |
| 张老二 | 中文 | 中文系 | 88 |
| 张三 | 中文 | 中文系 | 95 |
| 王五 | 英语 | 英语系 | 94 |
| 王六 | 计算机 | 计算机系 | 90 |
| 王六 | 英语 | 计算机系 | 85 |
+-----------+-----------+--------------+-------+
8 rows in set (0.00 sec)
19.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
mysql> select name,age,department,c_name,grade,address from student,scroe where student.id=scroe.stu_id and
address like "湖南%";
+--------+-----+--------------+-----------+-------+--------------------+
| name | age | department | c_name | grade | address |
+--------+-----+--------------+-----------+-------+--------------------+
| 张三 | 34 | 中文系 | 中文 | 95 | 湖南省永州市 |
| 王六 | 36 | 计算机系 | 计算机 | 90 | 湖南省衡阳市 |
| 王六 | 36 | 计算机系 | 英语 | 85 | 湖南省衡阳市 |
+--------+-----+--------------+-----------+-------+--------------------+
3 rows in set (0.00 sec)
多表关联查询
于 2024-05-22 18:07:55 首次发布