数据库练习
1.MySql表添加约束
-- 确保 t_hero 表没有主键,然后添加主键约束
ALTER TABLE t_hero DROP PRIMARY KEY;
ALTER TABLE t_hero ADD PRIMARY KEY (id);
-- 为 name 列添加唯一约束
ALTER TABLE t_hero ADD UNIQUE (name);
-- 为 name 和 book 列添加非空约束
ALTER TABLE t_hero
MODIFY name VARCHAR(255) NOT NULL,
MODIFY book VARCHAR(255) NOT NULL;
-- 为 book 列添加外键约束,关联 t_book 表的 book_name 列
ALTER TABLE t_hero
ADD CONSTRAINT fk_hero_book
FOREIGN KEY (book) REFERENCES t_book(book_name);
mysql> ALTER TABLE t_hero DROP PRIMARY KEY;
mysql> desc t_hero;
+-------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+----------------+
| id | int | NO | PRI | NULL | auto_increment |
| name | varchar(100) | NO | | NULL | |
| book | varchar(100) | NO | | NULL | |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> ALTER TABLE t_hero ADD UNIQUE (name);
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> desc t_hero;
+-------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+----------------+
| id | int | NO | PRI | NULL | auto_increment |
| name | varchar(100) | NO | UNI | NULL | |
| book | varchar(100) | NO | | NULL | |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> ALTER TABLE t_hero
-> MODIFY name VARCHAR(255) NOT NULL,
-> MODIFY book VARCHAR(255) NOT NULL;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> ALTER TABLE t_hero
-> ^C
mysql> desc t_hero;
+-------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+----------------+
| id | int | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | UNI | NULL | |
| book | varchar(255) | NO | | NULL | |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> ALTER TABLE t_hero
-> ADD CONSTRAINT fk_hero_book
-> FOREIGN KEY (book) REFERENCES t_book(book_name);
Query OK, 18 rows affected (0.05 sec)
Records: 18 Duplicates: 0 Warnings: 0
mysql> desc t_hero;
+-------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+----------------+
| id | int | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | UNI | NULL | |
| book | varchar(255) | NO | MUL | NULL | |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> desc t_book;
+-----------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+--------------+------+-----+---------+----------------+
| id | int | NO | PRI | NULL | auto_increment |
| book_name | varchar(255) | NO | UNI | NULL | |
+-----------+--------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)
2.综合练习
1
mysql> CREATE TABLE `worker` (
-> `部门号` int(11) NOT NULL,
-> `职工号` int(11) NOT NULL,
-> `工作时间` date NOT NULL,
-> `工资` DECIMAL(8, 2) NOT NULL,
-> `政治面貌` ENUM('群众', '党员', '团员') NOT NULL DEFAULT '群 众',
-> `姓名` varchar(20) NOT NULL,
-> `出生日期` date NOT NULL,
-> PRIMARY KEY (`职工号`)
-> ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
Query OK, 0 rows affected, 3 warnings (0.02 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (101, 1001, '2015-05-04', 3500.00, '群众', '张三', '1990-07-01');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (101, 1002, '2017-02-06', 3200.00, '团员', '李四', '1997-02-08');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (102, 1003, '2011-01-04', 8500.00, '党员', '王亮', '1983-06-08');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (102, 1004, '2016-10-10', 5500.00, '群众', '赵六', '1994-09-05');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (102, 1005, '2014-04-01', 4800.00, '党员', '钱七', '1992-12-30');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `worker` (`部门号`, `职工号`, `工作时间`, `工资`, `政治面貌`, `姓名`, `出生日期`) VALUES (102, 1006, '2017-05-05', 4500.00, '党员', '孙八', '1996-09-02');
Query OK, 1 row affected (0.01 sec)
1、显示所有职工的基本信息。
mysql> select * from worker;
+--------+--------+------------+---------+----------+------+------------+
| 部门号 | 职工号 | 工作时间 | 工资 | 政治面貌 | 姓名 | 出生日期 |
+--------+--------+------------+---------+----------+------+------------+
| 101 | 1001 | 2015-05-04 | 3500.00 | 群众 | 张三 | 1990-07-01 |
| 101 | 1002 | 2017-02-06 | 3200.00 | 团员 | 李四 | 1997-02-08 |
| 102 | 1003 | 2011-01-04 | 8500.00 | 党员 | 王亮 | 1983-06-08 |
| 102 | 1004 | 2016-10-10 | 5500.00 | 群众 | 赵六 | 1994-09-05 |
| 102 | 1005 | 2014-04-01 | 4800.00 | 党员 | 钱七 | 1992-12-30 |
| 102 | 1006 | 2017-05-05 | 4500.00 | 党员 | 孙八 | 1996-09-02 |
+--------+--------+------------+---------+----------+------+------------+
6 rows in set (0.00 sec)
2、查询所有职工所属部门的部门号。
mysql> select distinct `部门号` from worker;
+--------+
| 部门号 |
+--------+
| 101 |
| 102 |
+--------+
2 rows in set (0.00 sec)
3、求出所有职工的人数。 不显示重复的部门号。
mysql> select count(`职工号`) 总人数 from worker;
+--------+
| 总人数 |
+--------+
| 6 |
+--------+
1 row in set (0.00 sec)
4、列出最高工和最低工资。
mysql> SELECT MAX(`工资`) AS 最高工资 FROM `worker`;
+----------+
| 最高工资 |
+----------+
| 8500.00 |
+----------+
1 row in set (0.00 sec)
mysql> SELECT MIN(`工资`) AS 最低工资 FROM `worker`;
+----------+
| 最低工资 |
+----------+
| 3200.00 |
+----------+
1 row in set (0.00 sec)
5、列出职工的平均工资和总工资。
mysql> SELECT AVG(`工资`) AS 平均工资 FROM `worker`;
+-------------+
| 平均工资 |
+-------------+
| 5000.000000 |
+-------------+
1 row in set (0.00 sec)
mysql> SELECT SUM(`工资`) AS 总工资 FROM `worker`;
+----------+
| 总工资 |
+----------+
| 30000.00 |
+----------+
1 row in set (0.00 sec)
6、创建一个只有职工号、姓名和参加工作的新表,名为工作日期表。
mysql> CREATE TABLE `工作日期表` (
-> `职工号` int(11) NOT NULL,
-> `姓名` varchar(20) NOT NULL,
-> `工作时间` date NOT NULL,
-> PRIMARY KEY (`职工号`)
-> ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
Query OK, 0 rows affected, 2 warnings (0.01 sec)
7、显示所有职工的年龄。
mysql> SELECT `姓名`,TIMESTAMPDIFF(YEAR, `出生日期`, CURDATE()) AS 年龄 FROM `worker`;
+------+------+
| 姓名 | 年龄 |
+------+------+
| 张三 | 34 |
| 李四 | 28 |
| 王亮 | 41 |
| 赵六 | 30 |
| 钱七 | 32 |
| 孙八 | 28 |
+------+------+
6 rows in set (0.00 sec)
8、列出所有姓刘的职工的职工号、姓名和出生日期。
mysql> select `姓名`,`职工号`,`出生日期` from worker where `姓名` like "
刘%";
Empty set (0.00 sec)
9、列出1960年以前出生的职工的姓名、参加工作日期。
mysql> select `姓名`,`工作时间` from worker where `出生日期` < '1960-01-01';
Empty set (0.00 sec)
10、列出工资在1000-2000之间的所有职工姓名。
mysql> select `姓名` from worker where `工资` < 2000 and `工资` > 1000;
Empty set (0.00 sec)
11、列出所有陈姓和李姓的职工姓名。
mysql> select `姓名` from worker where `姓名` like "陈%" or `姓名` like "李%";
+------+
| 姓名 |
+------+
| 李四 |
+------+
1 row in set (0.00 sec)
12、列出所有部门号为2和3的职工号、姓名、党员否。
mysql> SELECT
-> `职工号`,
-> `姓名`,
-> CASE
-> WHEN `政治面貌` = '党员' THEN '是'
-> ELSE '否'
-> END AS `党员否`
-> FROM
-> `worker`
-> WHERE
-> `部门号` IN (102, 103);
+--------+------+--------+
| 职工号 | 姓名 | 党员否 |
+--------+------+--------+
| 1003 | 王亮 | 是 |
| 1004 | 赵六 | 否 |
| 1005 | 钱七 | 是 |
| 1006 | 孙八 | 是 |
+--------+------+--------+
4 rows in set (0.00 sec)
13、将职工表worker中的职工按出生的先后顺序排序。
mysql> select * from worker order by `出生日期` ASC;
+--------+--------+------------+---------+----------+------+------------+
| 部门号 | 职工号 | 工作时间 | 工资 | 政治面貌 | 姓名 | 出生日期 |
+--------+--------+------------+---------+----------+------+------------+
| 102 | 1003 | 2011-01-04 | 8500.00 | 党员 | 王亮 | 1983-06-08 |
| 101 | 1001 | 2015-05-04 | 3500.00 | 群众 | 张三 | 1990-07-01 |
| 102 | 1005 | 2014-04-01 | 4800.00 | 党员 | 钱七 | 1992-12-30 |
| 102 | 1004 | 2016-10-10 | 5500.00 | 群众 | 赵六 | 1994-09-05 |
| 102 | 1006 | 2017-05-05 | 4500.00 | 党员 | 孙八 | 1996-09-02 |
| 101 | 1002 | 2017-02-06 | 3200.00 | 团员 | 李四 | 1997-02-08 |
+--------+--------+------------+---------+----------+------+------------+
6 rows in set (0.00 sec)
14、显示工资最高的前3名职工的职工号和姓名。
mysql> SELECT `职工号`, `姓名`,`工资`
-> FROM `worker`
-> ORDER BY `工资` DESC
-> LIMIT 3;
+--------+------+---------+
| 职工号 | 姓名 | 工资 |
+--------+------+---------+
| 1003 | 王亮 | 8500.00 |
| 1004 | 赵六 | 5500.00 |
| 1005 | 钱七 | 4800.00 |
+--------+------+---------+
3 rows in set (0.00 sec)
15、求出各部门党员的人数。
mysql> select `部门号`,count(*) from worker where `政治面貌`='党员' grou
p by `部门号`;
+--------+----------+
| 部门号 | count(*) |
+--------+----------+
| 102 | 3 |
+--------+----------+
1 row in set (0.00 sec)
16、统计各部门的工资和平均工资
mysql> SELECT
-> `部门号`,
-> SUM(`工资`) AS `工资总和`,
-> AVG(`工资`) AS `平均工资`
-> FROM
-> `worker`
-> GROUP BY
-> `部门号`;
+--------+----------+-------------+
| 部门号 | 工资总和 | 平均工资 |
+--------+----------+-------------+
| 101 | 6700.00 | 3350.000000 |
| 102 | 23300.00 | 5825.000000 |
+--------+----------+-------------+
2 rows in set (0.00 sec)
17、列出总人数大于4的部门号和总人数。
mysql> select `部门号`,count(*) as `总人数` from worker group by `部门号` having count(*) > 4;
Empty set (0.00 sec)
2
创建表
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.03 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.02 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.00 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.00 sec)
mysql> INSERT INTO student VALUES( 906,'王六', '男',1988,'计算机系', '湖南省衡阳市');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO score VALUES(NULL,901, '计算机',98);
Query OK, 1 row affected (0.00 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.00 sec)
mysql> INSERT INTO score VALUES(NULL,904, '计算机',70);
Query OK, 1 row affected (0.00 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)
3.查询student表的所有记录
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)
4.查询student表的第2条到4条记录
mysql> select * from student limit 3 offset 1;
+-----+--------+------+-------+------------+--------------+
| 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表中查询年龄18~22岁的学生信息
mysql> select * from student where YEAR(CURDATE()) - birth BETWEEN 18 AND 22;
Empty set (0.00 sec)
8.从student表中查询每个院系有多少人
mysql> select `department`,count(*) as `人数` from student group by `dep
artment`;
+------------+------+
| department | 人数 |
+------------+------+
| 计算机系 | 2 |
| 中文系 | 2 |
| 英语系 | 2 |
+------------+------+
3 rows in set (0.00 sec)
9.从score表中查询每个科目的最高分
mysql> select `c_name`,MAX(`grade`) from score group by `c_name`;
+--------+--------------+
| c_name | MAX(`grade`) |
+--------+--------------+
| 计算机 | 98 |
| 英语 | 94 |
| 中文 | 95 |
+--------+--------------+
3 rows in set (0.00 sec)
10.查询李四的考试科目(c_name)和考试成绩(grade)
mysql> select c_name,grade from student,score where student.id=score.stu_id and name="李四";
+--------+-------+
| c_name | grade |
+--------+-------+
| 计算机 | 70 |
| 英语 | 92 |
+--------+-------+
2 rows in set (0.00 sec)
11.用连接的方式查询所有学生的信息和考试信息
mysql> select * from student,score where student.id=score.stu_id;
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
| id | name | sex | birth | department | address | id | stu_id | c_name | grade |
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
| 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 1 | 901 | 计算机 | 98 |
| 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 2 | 901 | 英语 | 80 |
| 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 3 | 902 | 计算机 | 65 |
| 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 4 | 902 | 中文 | 88 |
| 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 5 | 903 | 中文 | 95 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 6 | 904 | 计算机 | 70 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 7 | 904 | 英语 | 92 |
| 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 8 | 905 | 英语 | 94 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 9 | 906 | 计算机 | 90 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 10 | 906 | 英语 | 85 |
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
10 rows in set (0.00 sec)
12.计算每个学生的总成绩
mysql> select name,sum(grade) as `总成绩` from student,score where stude
nt.id=score.stu_id group by name;
+--------+--------+
| name | 总成绩 |
+--------+--------+
| 张老大 | 178 |
| 张老二 | 153 |
| 张三 | 95 |
| 李四 | 162 |
| 王五 | 94 |
| 王六 | 175 |
+--------+--------+
6 rows in set (0.00 sec)
13.计算每个考试科目的平均成绩
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)
14.查询计算机成绩低于95的学生信息
mysql> select * from student inner join score on(student.id=score.stu_id) where score.c_name="计算机" and score.grade<95;
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
| id | name | sex | birth | department | address | id | stu_id | c_name | grade |
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
| 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 3 | 902 | 计算机 | 65 |
| 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 6 | 904 | 计算机 | 70 |
| 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 9 | 906 | 计算机 | 90 |
+-----+--------+------+-------+------------+--------------+----+--------+--------+-------+
3 rows in set (0.00 sec)
15.查询同时参加计算机和英语考试的学生的信息
16.将计算机考试成绩按从高到低进行排序
mysql> select * from score order by grade DESC;
+----+--------+--------+-------+
| id | stu_id | c_name | grade |
+----+--------+--------+-------+
| 1 | 901 | 计算机 | 98 |
| 5 | 903 | 中文 | 95 |
| 8 | 905 | 英语 | 94 |
| 7 | 904 | 英语 | 92 |
| 9 | 906 | 计算机 | 90 |
| 4 | 902 | 中文 | 88 |
| 10 | 906 | 英语 | 85 |
| 2 | 901 | 英语 | 80 |
| 6 | 904 | 计算机 | 70 |
| 3 | 902 | 计算机 | 65 |
+----+--------+--------+-------+
10 rows in set (0.00 sec)
17.从student表和score表中查询出学生的学号,然后合并查询结果
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)
18.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
mysql> select student.name,student.department,score.c_name,score.grade
-> from student
-> join score on student.id=score.stu_id
-> where student.name like "张%" or student.name like "王%";
+--------+------------+--------+-------+
| name | department | c_name | grade |
+--------+------------+--------+-------+
| 张老大 | 计算机系 | 计算机 | 98 |
| 张老大 | 计算机系 | 英语 | 80 |
| 张老二 | 中文系 | 计算机 | 65 |
| 张老二 | 中文系 | 中文 | 88 |
| 张三 | 中文系 | 中文 | 95 |
| 王五 | 英语系 | 英语 | 94 |
| 王六 | 计算机系 | 计算机 | 90 |
| 王六 | 计算机系 | 英语 | 85 |
+--------+------------+--------+-------+
8 rows in set (0.00 sec)
19.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
mysql> select student.name,TIMESTAMPDIFF(YEAR, student.birth, CURDATE())
AS age,student.department,score.c_name,score.grade
-> from student
-> join score on student.id=score.stu_id
-> where student.address like "湖南%";
+------+------+------------+--------+-------+
| name | age | department | c_name | grade |
+------+------+------------+--------+-------+
| 张三 | NULL | 中文系 | 中文 | 95 |
| 王六 | NULL | 计算机系 | 计算机 | 90 |
| 王六 | NULL | 计算机系 | 英语 | 85 |
+------+------+------------+--------+-------+
3 rows in set, 3 warnings (0.00 sec)