1.创建student和score表
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)
);
2.创建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)
);
3.为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 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);
1.查询student表的所有记录
2.查询student表的第2条到4条记录
3.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
4.从student表中查询计算机系和英语系的学生的信息
5.从student表中查询年龄18~22岁的学生信息
6.从student表中查询每个院系有多少人
7.从score表中查询每个科目的最高分
8.查询李四的考试科目(c_name)和考试成绩(grade)
9.用连接的方式查询所有学生的信息和考试信息
10.计算每个学生的总成绩
11.计算每个考试科目的平均成绩
12.查询计算机成绩低于95的学生信息
13.查询同时参加计算机和英语考试的学生的信息
14.将计算机考试成绩按从高到低进行排序
15.从student表和score表中查询出学生的学号,然后合并查询结果
16.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
17.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
mysql> create table student(
-> id int not null unique primary key,
-> name varchar(30) not null,
-> stu_gender char(1) not null default 'M' check (stu_gender in ('F','M')),
-> birth YEAR,
-> department VARCHAR(20),
-> address varchar(50)
-> );
Query OK, 0 rows affected (0.03 sec)
mysql> create table socre(
-> sco_id int,
-> stu_id int(10),
-> c_name VARCHAR(20),
-> grade INT(10)
-> );
Query OK, 0 rows affected, 2 warnings (0.02 sec)
mysql> INSERT INTO student VALUES(901,'张老大', 'F',1985,'计算机系', '北京市海淀区');
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO student VALUES( 902,'张老二', 'F',1986,'中文系', '北京市昌平区');
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO student VALUES( 903,'张三', 'M',1990,'中文系', '湖南省永州市');
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO student VALUES( 904,'李四', 'F',1990,'英语系', '辽宁省阜新市');
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO student VALUES( 905,'王五', 'M',1991,'英语系', '福建省厦门市');
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO student VALUES( 906,'王六', 'F',1988,'计算机系', '湖南省衡阳市');
Query OK, 1 row affected (0.01 sec)
此时,我们就可以查看表中的数据
mysql> select *from student;
+-----+--------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+--------+------------+-------+------------+--------------+
| 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| 902 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| 903 | 张三 | M | 1990 | 中文系 | 湖南省永州市 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+--------+------------+-------+------------+--------------+
6 rows in set (0.00 sec)
mysql> INSERT INTO socre VALUES(NULL,901, '计算机',98);
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO socre VALUES(NULL,901, '英语', 80);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO socre VALUES(NULL,902, '计算机',65);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO socre VALUES(NULL,902, '中文',88);
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO socre VALUES(NULL,903, '中文',95);
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO socre VALUES(NULL,904, '计算机',70);
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO socre VALUES(NULL,904, '英语',92);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO socre VALUES(NULL,905, '英语',94);
Query OK, 1 row affected (0.01 sec)
mysql> INSERT INTO socre VALUES(NULL,906, '计算机',90);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO socre VALUES(NULL,906, '英语',85);
Query OK, 1 row affected (0.01 sec)
此时,我们就可以查看表中的数据
mysql> select *from socre;
+--------+--------+--------+-------+
| sco_id | stu_id | c_name | grade |
+--------+--------+--------+-------+
| NULL | 901 | 计算机 | 98 |
| NULL | 901 | 英语 | 80 |
| NULL | 902 | 计算机 | 65 |
| NULL | 902 | 中文 | 88 |
| NULL | 903 | 中文 | 95 |
| NULL | 904 | 计算机 | 70 |
| NULL | 904 | 英语 | 92 |
| NULL | 905 | 英语 | 94 |
| NULL | 906 | 计算机 | 90 |
| NULL | 906 | 英语 | 85 |
+--------+--------+--------+-------+
mysql> select *from student;
+-----+--------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+--------+------------+-------+------------+--------------+
| 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| 902 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| 903 | 张三 | M | 1990 | 中文系 | 湖南省永州市 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+--------+------------+-------+------------+--------------+
6 rows in set (0.00 sec)
mysql> select * from student limit 2,4;
+-----+------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+------+------------+-------+------------+--------------+
| 903 | 张三 | M | 1990 | 中文系 | 湖南省永州市 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+------+------------+-------+------------+--------------+
4 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 | stu_gender | birth | department | address |
+-----+--------+------------+-------+------------+--------------+
| 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+--------+------------+-------+------------+--------------+
4 rows in set (0.00 sec)
mysql> select * from student where year(now())-birth between 28 and 32;
+-----+------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+------+------------+-------+------------+--------------+
| 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
+-----+------+------------+-------+------------+--------------+
1 row in set (0.00 sec)
mysql> select department,count(name) from student group by id;
+------------+-------------+
| department | count(name) |
+------------+-------------+
| 计算机系 | 1 |
| 中文系 | 1 |
| 中文系 | 1 |
| 英语系 | 1 |
| 英语系 | 1 |
| 计算机系 | 1 |
+------------+-------------+
6 rows in set (0.00 sec)
mysql> select c_name,max(grade) from socre group by c_name;
+--------+------------+
| c_name | max(grade) |
+--------+------------+
| 计算机 | 98 |
| 英语 | 94 |
| 中文 | 95 |
+--------+------------+
3 rows in set (0.01 sec)
mysql> select c.c_name 科目,c.grade 考试成绩 from socre c,student s where c.stu_id=s.id and s.name='李四';
+--------+----------+
| 科目 | 考试成绩 |
+--------+----------+
| 计算机 | 70 |
| 英语 | 92 |
+--------+----------+
2 rows in set (0.00 sec)
mysql> select c.*,s.name,s.stu_gender,s.birth,s.department,s.address from socre c inner join student s on c.stu_id=s.id;
+--------+--------+--------+-------+--------+------------+-------+------------+--------------+
| sco_id | stu_id | c_name | grade | name | stu_gender | birth | department | address |
+--------+--------+--------+-------+--------+------------+-------+------------+--------------+
| NULL | 901 | 计算机 | 98 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| NULL | 901 | 英语 | 80 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| NULL | 902 | 计算机 | 65 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| NULL | 902 | 中文 | 88 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| NULL | 903 | 中文 | 95 | 张三 | M | 1990 | 中文系 | 湖南省永州市 |
| NULL | 904 | 计算机 | 70 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| NULL | 904 | 英语 | 92 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| NULL | 905 | 英语 | 94 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| NULL | 906 | 计算机 | 90 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
| NULL | 906 | 英语 | 85 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+--------+--------+--------+-------+--------+------------+-------+------------+--------------+
10 rows in set (0.00 sec)
mysql> select s.name 姓名,sum(grade) 总成绩 from socre c inner join student s on c.stu_id=s.id group by s.name;
+--------+--------+
| 姓名 | 总成绩 |
+--------+--------+
| 张老大 | 178 |
| 张老二 | 153 |
| 张三 | 95 |
| 李四 | 162 |
| 王五 | 94 |
| 王六 | 175 |
+--------+--------+
6 rows in set (0.00 sec)
mysql> select c.c_name 考试科目,avg(grade) 平均成绩 from socre c inner join student s on c.stu_id=s.id group by c.c_name;
+----------+----------+
| 考试科目 | 平均成绩 |
+----------+----------+
| 计算机 | 80.7500 |
| 英语 | 87.7500 |
| 中文 | 91.5000 |
+----------+----------+
3 rows in set (0.00 sec)
mysql> select s.* from socre c inner join student s on c.stu_id=s.id where c.c_name='计算机' and c.grade<95;
+-----+--------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+--------+------------+-------+------------+--------------+
| 902 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+--------+------------+-------+------------+--------------+
3 rows in set (0.00 sec)
mysql> select s.* from student s,(select * from socre where c_name = '计算机') as st1 inner JOIN (select * from socre where c_name = '英语') as st2 on st1.s
tu_id = st2.stu_id where s.id=st1.stu_id;
+-----+--------+------------+-------+------------+--------------+
| id | name | stu_gender | birth | department | address |
+-----+--------+------------+-------+------------+--------------+
| 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+-----+--------+------------+-------+------------+--------------+
3 rows in set (0.01 sec)
mysql> select grade 考试成绩 from socre where c_name='计算机' order by grade desc;
+----------+
| 考试成绩 |
+----------+
| 98 |
| 90 |
| 70 |
| 65 |
+----------+
4 rows in set (0.00 sec)
mysql> select *from socre c inner join student s on c.stu_id=s.id;
+--------+--------+--------+-------+-----+--------+------------+-------+------------+--------------+
| sco_id | stu_id | c_name | grade | id | name | stu_gender | birth | department | address |
+--------+--------+--------+-------+-----+--------+------------+-------+------------+--------------+
| NULL | 901 | 计算机 | 98 | 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| NULL | 901 | 英语 | 80 | 901 | 张老大 | F | 1985 | 计算机系 | 北京市海淀区 |
| NULL | 902 | 计算机 | 65 | 902 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| NULL | 902 | 中文 | 88 | 902 | 张老二 | F | 1986 | 中文系 | 北京市昌平区 |
| NULL | 903 | 中文 | 95 | 903 | 张三 | M | 1990 | 中文系 | 湖南省永州市 |
| NULL | 904 | 计算机 | 70 | 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| NULL | 904 | 英语 | 92 | 904 | 李四 | F | 1990 | 英语系 | 辽宁省阜新市 |
| NULL | 905 | 英语 | 94 | 905 | 王五 | M | 1991 | 英语系 | 福建省厦门市 |
| NULL | 906 | 计算机 | 90 | 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
| NULL | 906 | 英语 | 85 | 906 | 王六 | F | 1988 | 计算机系 | 湖南省衡阳市 |
+--------+--------+--------+-------+-----+--------+------------+-------+------------+--------------+
10 rows in set (0.00 sec)
mysql> select s.name 姓名,s.department 院系,c.c_name 考试科目,c.grade 考试成绩 from socre c inner join student s on c.stu_id=s.id where name like '张%' OR n
ame like '王%';
+--------+----------+----------+----------+
| 姓名 | 院系 | 考试科目 | 考试成绩 |
+--------+----------+----------+----------+
| 张老大 | 计算机系 | 计算机 | 98 |
| 张老大 | 计算机系 | 英语 | 80 |
| 张老二 | 中文系 | 计算机 | 65 |
| 张老二 | 中文系 | 中文 | 88 |
| 张三 | 中文系 | 中文 | 95 |
| 王五 | 英语系 | 英语 | 94 |
| 王六 | 计算机系 | 计算机 | 90 |
| 王六 | 计算机系 | 英语 | 85 |
+--------+----------+----------+----------+
8 rows in set (0.00 sec)
mysql> select s.name 姓名,(year(now())-s.birth) 年龄,s.department 院系,c.c_name 考试科目,c.grade 考试成绩 from socre c inner join student s on c.stu_id=s.id where address like '湖南%';
+------+------+----------+----------+----------+
| 姓名 | 年龄 | 院系 | 考试科目 | 考试成绩 |
+------+------+----------+----------+----------+
| 张三 | 33 | 中文系 | 中文 | 95 |
| 王六 | 35 | 计算机系 | 计算机 | 90 |
| 王六 | 35 | 计算机系 | 英语 | 85 |
+------+------+----------+----------+----------+
3 rows in set (0.00 sec)