赞
踩
目录
c:从student表查询所有学生的学号(id)、姓名(name) 和院系(department)的信息
h:查询李四的考试科目(c_name) 和考试成绩(grade)
o:从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.00 sec)
- mysql> 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)
- -> );
- Query OK, 0 rows affected, 3 warnings (0.01 sec)
- mysql> insert into student values(901,'张老大','男',1985,'计算机系','北京市海淀区');
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into student values(902,'张老二','男',1986,'中文系','北京市昌平区');
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into student values(903,'张三','女',1990,'中文系','湖南省永州市');
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into student values(904,'李四','男',1990,'英语系','辽宁省皋新市');
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into student values(905,'王五','女',1991,'英语系','福建省厦门市');
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into student values(906,'王六','男',1988,'计算机系','湖南省衡阳市');
- Query OK, 1 row affected (0.00 sec)
-
- mysql>
- mysql> insert into score values(null,901,'计算机系',98);
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into score values(null,901,'英语',80);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,902,'计算机',65);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,902,'中文',88);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,903,'中文',95);
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into score values(null,904,'计算机',70);
- Query OK, 1 row affected (0.01 sec)
-
- mysql> insert into score values(null,904,'英语',92);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,905,'英语',94);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,906,'计算机',90);
- Query OK, 1 row affected (0.00 sec)
-
- mysql> insert into score values(null,906,'英语',85);
- Query OK, 1 row affected (0.00 sec)
- mysql> select *from student;
- +-----+-----------+------+-------+--------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+-----------+------+-------+--------------+--------------------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 |
- | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +-----+-----------+------+-------+--------------+--------------------+
- 6 rows in set (0.00 sec)
-
- mysql> select *from score;
- +----+--------+--------------+-------+
- | id | stu_id | c_name | grade |
- +----+--------+--------------+-------+
- | 1 | 901 | 计算机系 | 98 |
- | 2 | 901 | 英语 | 80 |
- | 3 | 902 | 计算机 | 65 |
- | 4 | 902 | 中文 | 88 |
- | 5 | 903 | 中文 | 95 |
- | 6 | 904 | 计算机 | 70 |
- | 7 | 904 | 英语 | 92 |
- | 8 | 905 | 英语 | 94 |
- | 9 | 906 | 计算机 | 90 |
- | 10 | 906 | 英语 | 85 |
- +----+--------+--------------+-------+
- 10 rows in set (0.00 sec)
- mysql> select *from student;
- +-----+-----------+------+-------+--------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+-----------+------+-------+--------------+--------------------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 |
- | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +-----+-----------+------+-------+--------------+--------------------+
- 6 rows in set (0.00 sec)
- 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)
- mysql> select id,name,department from student;
- +-----+-----------+--------------+
- | id | name | department |
- +-----+-----------+--------------+
- | 901 | 张老大 | 计算机系 |
- | 902 | 张老二 | 中文系 |
- | 903 | 张三 | 中文系 |
- | 904 | 李四 | 英语系 |
- | 905 | 王五 | 英语系 |
- | 906 | 王六 | 计算机系 |
- +-----+-----------+--------------+
- 6 rows in set (0.00 sec)
- 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)
- mysql> select *,year(now())-birth as age from student where birth < 1992 and birth > 1987;
- +-----+--------+------+-------+--------------+--------------------+------+
- | id | name | sex | birth | department | address | age |
- +-----+--------+------+-------+--------------+--------------------+------+
- | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 33 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 | 33 |
- | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 32 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 35 |
- +-----+--------+------+-------+--------------+--------------------+------+
- 4 rows in set (0.00 sec)
- mysql> select department,count(*) as number from student group by (department);
- +--------------+--------+
- | department | number |
- +--------------+--------+
- | 计算机系 | 2 |
- | 中文系 | 2 |
- | 英语系 | 2 |
- +--------------+--------+
- 3 rows in set (0.00 sec)
- mysql> select c_name,max(grade) as max_grade from score group by c_name;
- +-----------+-----------+
- | c_name | max_grade |
- +-----------+-----------+
- | 计算机 | 98 |
- | 英语 | 94 |
- | 中文 | 95 |
- +-----------+-----------+
- 3 rows in set (0.00 sec)
- mysql> select c_name,grade from score inner join student on score.stu_id=student.id where student.name='李四';
- +-----------+-------+
- | c_name | grade |
- +-----------+-------+
- | 计算机 | 70 |
- | 英语 | 92 |
- +-----------+-------+
- 2 rows in set (0.01 sec)
- mysql> select * from score inner join student on score.stu_id=student.id;
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- | id | stu_id | c_name | grade | id | name | sex | birth | department | address |
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- | 1 | 901 | 计算机 | 98 | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 2 | 901 | 英语 | 80 | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 3 | 902 | 计算机 | 65 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 4 | 902 | 中文 | 88 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 5 | 903 | 中文 | 95 | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
- | 6 | 904 | 计算机 | 70 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 |
- | 7 | 904 | 英语 | 92 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 |
- | 8 | 905 | 英语 | 94 | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
- | 9 | 906 | 计算机 | 90 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- | 10 | 906 | 英语 | 85 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- 10 rows in set (0.00 sec)
- mysql> select name,sum(grade) from score inner join student on score.stu_id=student.id group by name;
- +-----------+------------+
- | name | sum(grade) |
- +-----------+------------+
- | 张老大 | 178 |
- | 张老二 | 153 |
- | 张三 | 95 |
- | 李四 | 162 |
- | 王五 | 94 |
- | 王六 | 175 |
- +-----------+------------+
- 6 rows in set (0.00 sec)
- mysql> select c_name,avg(grade) as '平均成绩' from score group by c_name;
- +-----------+--------------+
- | c_name | 平均成绩 |
- +-----------+--------------+
- | 计算机 | 80.7500 |
- | 英语 | 87.7500 |
- | 中文 | 91.5000 |
- +-----------+--------------+
- 3 rows in set (0.00 sec)
- mysql> select stu.id,stu.name,stu.sex,stu.birth,stu.department,sc.c_name,sc.grade from sccore as sc inner join student as stu on stu.id=sc.stu_id where c_name='计算机' and grade<<95;
- +-----+-----------+------+-------+--------------+-----------+-------+
- | id | name | sex | birth | department | c_name | grade |
- +-----+-----------+------+-------+--------------+-----------+-------+
- | 902 | 张老二 | 男 | 1986 | 中文系 | 计算机 | 65 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 计算机 | 70 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 计算机 | 90 |
- +-----+-----------+------+-------+--------------+-----------+-------+
- 3 rows in set (0.00 sec)
- mysql> select a.* from score as sc inner join (select stu.* from student as stu inner join score as sc on sc.stu_id=stu.id where sc.c_name='计算机') as a on a.id=sc.stu_id where sc.c_name='英语';
- +-----+-----------+------+-------+--------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+-----------+------+-------+--------------+--------------------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +-----+-----------+------+-------+--------------+--------------------+
- 3 rows in set (0.00 sec)
- mysql> select stu.id,stu.name,stu.sex,stu.birth,stu.department,stu.address,sc.c_name,sc.grade from score sc inner join student stu on sc.stu_id=stu.id where sc.c_name='计算机' order by grade desc;
- +-----+-----------+------+-------+--------------+--------------------+-----------+-------+
- | id | name | sex | birth | department | address | c_name | grade |
- +-----+-----------+------+-------+--------------+--------------------+-----------+-------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 计算机 | 98 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 计算机 | 90 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省皋新市 | 计算机 | 70 |
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 计算机 | 65 |
- +-----+-----------+------+-------+--------------+--------------------+-----------+-------+
- 4 rows in set (0.00 sec)
- mysql> select id from student union select stu_id from score;
- +-----+
- | id |
- +-----+
- | 901 |
- | 902 |
- | 903 |
- | 904 |
- | 905 |
- | 906 |
- +-----+
- 6 rows in set (0.00 sec)
- mysql> select stu.name,stu.department,sc.c_name,sc.grade from student as stu inner join
- score as sc on sc.stu_id=stu.id where stu.name like '张%' or stu.name like '王%';
- +-----------+--------------+-----------+-------+
- | name | department | c_name | grade |
- +-----------+--------------+-----------+-------+
- | 张老大 | 计算机系 | 计算机 | 98 |
- | 张老大 | 计算机系 | 英语 | 80 |
- | 张老二 | 中文系 | 计算机 | 65 |
- | 张老二 | 中文系 | 中文 | 88 |
- | 张三 | 中文系 | 中文 | 95 |
- | 王五 | 英语系 | 英语 | 94 |
- | 王六 | 计算机系 | 计算机 | 90 |
- | 王六 | 计算机系 | 英语 | 85 |
- +-----------+--------------+-----------+-------+
- 8 rows in set (0.00 sec)
- mysql> select name,(year(now())-birth) as age,department,c_name,grade from score,(select *from student where address like '湖南%') as stu where stu.id=stu_id;
- +--------+------+--------------+-----------+-------+
- | name | age | department | c_name | grade |
- +--------+------+--------------+-----------+-------+
- | 张三 | 33 | 中文系 | 中文 | 95 |
- | 王六 | 35 | 计算机系 | 计算机 | 90 |
- | 王六 | 35 | 计算机系 | 英语 | 85 |
- +--------+------+--------------+-----------+-------+
- 3 rows in set (0.00 sec)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。