数据库的基本命令 创建数据库 创建表 插入数据

1 、查看所有的数据库:

mysql> show databases;

2、创建数据库

mysql> show databases;

3、创建二个表 student 和score

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

4、查看表

mysql> desc student;
+------------+-------------+------+-----+---------+----------------+
| Field      | Type        | Null | Key | Default | Extra          |
+------------+-------------+------+-----+---------+----------------+
| id         | int         | NO   | PRI | NULL    | auto_increment |
| name       | varchar(20) | NO   |     | NULL    |                |
| sex        | varchar(4)  | YES  |     | NULL    |                |
| birth      | year        | YES  |     | NULL    |                |
| department | varchar(20) | NO   |     | NULL    |                |
| address    | varchar(50) | YES  |     | NULL    |                |
+------------+-------------+------+-----+---------+----------------+
6 rows in set (0.10 sec)

5、向表中插入数据

insert into score (stu_id,c_name,grade)values(801,'计算机',98),
(801,'英语', 80),
(802, '计算机',65),
(802, '中文',88),
(803, '中文',95),
(804, '计算机',70),
(804, '英语',92),
(805, '英语',94),
(805, '计算机',90),
(806, '英语',85);
mysql> insert into student(id,name,sex,birth,department,address)values('801','张老大', '男',1985,'计算机系', '北京市海淀 区'),
    -> ('802','张老二', '男',1986,'中文系', '北京市昌平区'),
    -> ('803','张三', '女',1990,'中文系', '湖南省永州市'),
    -> ('804','李四', '男',1990,'英语系', '辽宁省阜新市'),
    -> ('805','王五', '女',1991,'英语系', '福建省厦门市'),
    -> ('806','王六', '男',1988,'计算机系', '湖南省衡阳市');

6、查看表中内容

mysql> select *from student;
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       |
| 802 | 张老二    ||  1986 | 中文系       | 北京市昌平区       |
| 803 | 张三      ||  1990 | 中文系       | 湖南省永州市       |
| 804 | 李四      ||  1990 | 英语系       | 辽宁省阜新市       |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       |
| 806 | 王六      ||  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
6 rows in set (0.00 sec)

mysql> select *from  score;
+----+--------+-----------+-------+
| id | stu_id | c_name    | grade |
+----+--------+-----------+-------+
|  1 |    801 | 计算机    |    98 |
|  2 |    801 | 英语      |    80 |
|  3 |    802 | 计算机    |    65 |
|  4 |    802 | 中文      |    88 |
|  5 |    803 | 中文      |    95 |
|  6 |    804 | 计算机    |    70 |
|  7 |    804 | 英语      |    92 |
|  8 |    805 | 英语      |    94 |
|  9 |    805 | 计算机    |    90 |
| 10 |    806 | 英语      |    85 |
+----+--------+-----------+-------+
10 rows in set (0.00 sec)

7、查找student表中从 1到 3的记录

mysql> select *from student limit 1,3;
+-----+-----------+------+-------+------------+--------------------+
| id  | name      | sex  | birth | department | address            |
+-----+-----------+------+-------+------------+--------------------+
| 802 | 张老二    ||  1986 | 中文系     | 北京市昌平区       |
| 803 | 张三      ||  1990 | 中文系     | 湖南省永州市       |
| 804 | 李四      ||  1990 | 英语系     | 辽宁省阜新市       |
+-----+-----------+------+-------+------------+--------------------+
3 rows in set (1.56 sec)

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


mysql> select id,name,department  from student;
+-----+-----------+--------------+
| id  | name      | department   |
+-----+-----------+--------------+
| 801 | 张老大    | 计算机系     |
| 802 | 张老二    | 中文系       |
| 803 | 张三      | 中文系       |
| 804 | 李四      | 英语系       |
| 805 | 王五      | 英语系       |
| 806 | 王六      | 计算机系     |
+-----+-----------+--------------+
6 rows in set (0.00 sec)

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

mysql> select * from student where department='计算机系' or department='英语系';
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       |
| 804 | 李四      ||  1990 | 英语系       | 辽宁省阜新市       |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       |
| 806 | 王六      ||  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
4 rows in set (1.64 sec)

10.从 student 表中查询年龄 28~32 岁的学生信息

mysql> select *from student where birth < 2020-28 and  birth > 2020-32;
+-----+--------+------+-------+------------+--------------------+
| id  | name   | sex  | birth | department | address            |
+-----+--------+------+-------+------------+--------------------+
| 803 | 张三   ||  1990 | 中文系     | 湖南省永州市       |
| 804 | 李四   ||  1990 | 英语系     | 辽宁省阜新市       |
| 805 | 王五   ||  1991 | 英语系     | 福建省厦门市       |
+-----+--------+------+-------+------------+--------------------+
3 rows in set (0.10 sec)

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

mysql>  select department, COUNT(*) from student group by department;
+--------------+----------+
| department   | COUNT(*) |
+--------------+----------+
| 计算机系     |        2 |
| 中文系       |        2 |
| 英语系       |        2 |
+--------------+----------+
3 rows in set (0.00 sec)

巩固练习:
查询score表学习每个课程的人数

mysql> select c_name, COUNT(*) from score group by c_name;
+-----------+----------+
| c_name    | COUNT(*) |
+-----------+----------+
| 计算机    |        4 |
| 英语      |        4 |
| 中文      |        2 |
+-----------+----------+
3 rows in set (0.00 sec)

12.从 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.02 sec)

13.查询李四的考试科目(c_name)和考试成绩(grade)

mysql> select c_name, grade from score where stu_id=(select id from student where name='李四');
+-----------+-------+
| c_name    | grade |
+-----------+-------+
| 计算机    |    70 |
| 英语      |    92 |
+-----------+-------+
2 rows in set (0.00 sec)

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

mysql> select  student.id,name,sex,birth,department,address,c_name,grade from  student,score  where student.id=score.stu_id;
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| id  | name      | sex  | birth | department   | address            | c_name    | grade |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       | 计算机    |    98 |
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       | 英语      |    80 |
| 802 | 张老二    ||  1986 | 中文系       | 北京市昌平区       | 计算机    |    65 |
| 802 | 张老二    ||  1986 | 中文系       | 北京市昌平区       | 中文      |    88 |
| 803 | 张三      ||  1990 | 中文系       | 湖南省永州市       | 中文      |    95 |
| 804 | 李四      ||  1990 | 英语系       | 辽宁省阜新市       | 计算机    |    70 |
| 804 | 李四      ||  1990 | 英语系       | 辽宁省阜新市       | 英语      |    92 |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       | 英语      |    94 |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       | 计算机    |    90 |
| 806 | 王六      ||  1988 | 计算机系     | 湖南省衡阳市       | 英语      |    85 |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
10 rows in set (0.00 sec)

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

mysql> SELECT student.id,name,SUM(grade) FROM student,score WHERE student.id=score.stu_id GROUP BY id;
+-----+-----------+------------+
| id  | name      | SUM(grade) |
+-----+-----------+------------+
| 801 | 张老大    |        178 |
| 802 | 张老二    |        153 |
| 803 | 张三      |         95 |
| 804 | 李四      |        162 |
| 805 | 王五      |        184 |
| 806 | 王六      |         85 |
+-----+-----------+------------+
6 rows in set (0.11 sec)

16.计算每个考试科目的平均成绩

mysql> SELECT c_name,AVG(grade) FROM score GROUP BY c_name;
+-----------+------------+
| c_name    | AVG(grade) |
+-----------+------------+
| 计算机    |    80.7500 |
| 英语      |    87.7500 |
| 中文      |    91.5000 |
+-----------+------------+
3 rows in set (0.11 sec)

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

mysql> SELECT * FROM student WHERE id IN (SELECT stu_id FROM score WHERE c_name="计算机" and grade<95);
+-----+-----------+------+-------+------------+--------------------+
| id  | name      | sex  | birth | department | address            |
+-----+-----------+------+-------+------------+--------------------+
| 802 | 张老二    ||  1986 | 中文系     | 北京市昌平区       |
| 804 | 李四      ||  1990 | 英语系     | 辽宁省阜新市       |
| 805 | 王五      ||  1991 | 英语系     | 福建省厦门市       |
+-----+-----------+------+-------+------------+--------------------+
3 rows in set (0.30 sec)

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

mysql> SELECT * FROM student  WHERE id =ANY  ( SELECT stu_id FROM score  WHERE stu_id IN (SELECT stu_id FROM  score WHERE c_name=  '计算机')  AND c_name= '英语' );
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       |
| 804 | 李四      ||  1990 | 英语系       | 辽宁省阜新市       |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       |
+-----+-----------+------+-------+--------------+--------------------+
3 rows in set (0.35 sec)

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

mysql> SELECT stu_id, grade FROM score WHERE c_name= '计算机'  ORDER BY grade DESC;
+--------+-------+
| stu_id | grade |
+--------+-------+
|    801 |    98 |
|    805 |    90 |
|    804 |    70 |
|    802 |    65 |
+--------+-------+
4 rows in set (0.00 sec)

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

mysql> SELECT id FROM student UNION SELECT stu_id  FROM score;
+-----+
| id  |
+-----+
| 801 |
| 802 |
| 803 |
| 804 |
| 805 |
| 806 |
+-----+
6 rows in set (0.30 sec)

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

mysql> SELECT student.id, name,sex,birth,department,address, c_name,grade FROM student, score WHERE  (name LIKE '张%'  OR name LIKE  '王%')  AND  student.id=score.stu_id ;
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| id  | name      | sex  | birth | department   | address            | c_name    | grade |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       | 计算机    |    98 |
| 801 | 张老大    ||  1985 | 计算机系     | 北京市海淀区       | 英语      |    80 |
| 802 | 张老二    ||  1986 | 中文系       | 北京市昌平区       | 计算机    |    65 |
| 802 | 张老二    ||  1986 | 中文系       | 北京市昌平区       | 中文      |    88 |
| 803 | 张三      ||  1990 | 中文系       | 湖南省永州市       | 中文      |    95 |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       | 英语      |    94 |
| 805 | 王五      ||  1991 | 英语系       | 福建省厦门市       | 计算机    |    90 |
| 806 | 王六      ||  1988 | 计算机系     | 湖南省衡阳市       | 英语      |    85 |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
8 rows in set (0.00 sec)

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

mysql> SELECT student.id, name,sex,birth,department,address, c_name,grade FROM student, score WHERE address LIKE '湖南%'   AND  student.id=score.stu_id;
+-----+--------+------+-------+--------------+--------------------+--------+-------+
| id  | name   | sex  | birth | department   | address            | c_name | grade |
+-----+--------+------+-------+--------------+--------------------+--------+-------+
| 803 | 张三   ||  1990 | 中文系       | 湖南省永州市       | 中文   |    95 |
| 806 | 王六   ||  1988 | 计算机系     | 湖南省衡阳市       | 英语   |    85 |
+-----+--------+------+-------+--------------+--------------------+--------+-------+
2 rows in set (0.00 sec)
  • 1
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值