MySQL-Join

2024-09-04 21:48
文章标签 mysql join database

本文主要是介绍MySQL-Join,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

环境准备

三个table:书籍信息book、作者信息author、出版社信息publish。

create database temp;
use temp;
create table book (id int not null auto_increment, name varchar(20) not null, author int not null, pub int not null, price int default 0, primary key (id));
create table author (id int not null auto_increment, name varchar(20) not null, age int, primary key (id));
create table publish (id int not null auto_increment, name varchar(20) not null, city varchar(20), primary key (id));

增加测试数据:

insert into author (name, age) values ("Tom", 20);
insert into author (name, age) values ("Jerry", 25);insert into publish (name, city) values ("PUB Tigger", "BJ");
insert into publish (name, city) values ("PUB Lion", "SH");
insert into publish (name, city) values ("PUB Rabbit", "SZ");insert into book (name, author, pub, price) values ("Good Mood", 1, 1, 110);
insert into book (name, author, pub, price) values ("Rainy Day", 2, 3, 230);
insert into book (name, author, pub, price) values ("On the Road", 2, 2, 220);

验证:

MariaDB [temp]> select * from book;
+----+-------------+--------+-----+-------+
| id | name        | author | pub | price |
+----+-------------+--------+-----+-------+
|  1 | Good Mood   |      1 |   1 |   110 |
|  2 | Rainy Day   |      2 |   3 |   230 |
|  3 | On the Road |      2 |   2 |   220 |
+----+-------------+--------+-----+-------+
3 rows in set (0.00 sec)MariaDB [temp]> select * from author;
+----+-------+------+
| id | name  | age  |
+----+-------+------+
|  1 | Tom   |   20 |
|  2 | Jerry |   25 |
+----+-------+------+
2 rows in set (0.00 sec)MariaDB [temp]> select * from publish;
+----+------------+------+
| id | name       | city |
+----+------------+------+
|  1 | PUB Tigger | BJ   |
|  2 | PUB Lion   | SH   |
|  3 | PUB Rabbit | SZ   |
+----+------------+------+
3 rows in set (0.00 sec)

Join

根据三个表,查询完整的信息;Join有两种使用方式。

MariaDB [temp]> select book.name, author.name as author, publish.name as publish, publish.city, book.price from book, author, publish where book.author=author.id and book.pub=publish.id;
+-------------+--------+------------+------+-------+
| name        | author | publish    | city | price |
+-------------+--------+------------+------+-------+
| Good Mood   | Tom    | PUB Tigger | BJ   |   110 |
| Rainy Day   | Jerry  | PUB Rabbit | SZ   |   230 |
| On the Road | Jerry  | PUB Lion   | SH   |   220 |
+-------------+--------+------------+------+-------+
3 rows in set (0.00 sec)MariaDB [temp]> select book.name, author.name as author, publish.name as publish, publish.city, book.price from book inner join author inner join publish on book.author=author.id and book.pub=publish.id;
+-------------+--------+------------+------+-------+
| name        | author | publish    | city | price |
+-------------+--------+------------+------+-------+
| Good Mood   | Tom    | PUB Tigger | BJ   |   110 |
| Rainy Day   | Jerry  | PUB Rabbit | SZ   |   230 |
| On the Road | Jerry  | PUB Lion   | SH   |   220 |
+-------------+--------+------------+------+-------+
3 rows in set (0.00 sec)MariaDB [temp]> 

同一个table被查询两次

对上面的场景进行增强,假设一本书有两个作者。

新建一个表book_en。

create table book_en (id int not null auto_increment, name varchar(20) not null, author1 int not null, author2 int not null, pub int not null, price int default 0, primary key (id));insert into book_en (name, author1, author2, pub, price) values ("A Bad Habit", 1, 2, 1, 110);
insert into book_en (name, author1, author2, pub, price) values ("Keep Healthy", 2, 1, 3, 230);
insert into book_en (name, author1, author2, pub, price) values ("Toast", 1, 2, 2, 220);

查询:

MariaDB [temp]> select * from book_en;
+----+--------------+---------+---------+-----+-------+
| id | name         | author1 | author2 | pub | price |
+----+--------------+---------+---------+-----+-------+
|  4 | A Bad Habit  |       1 |       2 |   1 |   110 |
|  5 | Keep Healthy |       2 |       1 |   3 |   230 |
|  6 | Toast        |       1 |       2 |   2 |   220 |
+----+--------------+---------+---------+-----+-------+
3 rows in set (0.00 sec)MariaDB [temp]> select * from author;
+----+-------+------+
| id | name  | age  |
+----+-------+------+
|  1 | Tom   |   20 |
|  2 | Jerry |   25 |
+----+-------+------+
2 rows in set (0.00 sec)MariaDB [temp]> select book_en.name as name, a1.name as author1, a2.name as author2, publish.name as publish, publish.city as city, book_en.price from book_en, author a1, author a2, publish where book_en.author1=a1.id and book_en.author2=a2.id and book_en.pub=publish.id;
+--------------+---------+---------+------------+------+-------+
| name         | author1 | author2 | publish    | city | price |
+--------------+---------+---------+------------+------+-------+
| Keep Healthy | Jerry   | Tom     | PUB Rabbit | SZ   |   230 |
| A Bad Habit  | Tom     | Jerry   | PUB Tigger | BJ   |   110 |
| Toast        | Tom     | Jerry   | PUB Lion   | SH   |   220 |
+--------------+---------+---------+------------+------+-------+
3 rows in set (0.00 sec)MariaDB [temp]> select book_en.name as name, a1.name as author1, a2.name as author2, publish.name as publish, publish.city as city, book_en.price from book_en inner join author a1 inner join author a2 inner join publish where book_en.author1=a1.id and book_en.author2=a2.id and book_en.pub=publish.id;
+--------------+---------+---------+------------+------+-------+
| name         | author1 | author2 | publish    | city | price |
+--------------+---------+---------+------------+------+-------+
| Keep Healthy | Jerry   | Tom     | PUB Rabbit | SZ   |   230 |
| A Bad Habit  | Tom     | Jerry   | PUB Tigger | BJ   |   110 |
| Toast        | Tom     | Jerry   | PUB Lion   | SH   |   220 |
+--------------+---------+---------+------------+------+-------+
3 rows in set (0.00 sec)MariaDB [temp]> 

上面的where可以改成on。

另外一个例子

城市city,两个城市之间的距离distance。

建表&准备测试数据

create table city (id int not null auto_increment, name varchar(20), primary key (id));
create table distance (id int not null auto_increment, from_id int not null, to_id int not null, dist int not null, primary key (id));insert into city (name) values("BJ");
insert into city (name) values("SH");
insert into city (name) values("SZ");insert into distance (from_id, to_id, dist) values (1, 2, 1200);
insert into distance (from_id, to_id, dist) values (2, 3, 2300);
insert into distance (from_id, to_id, dist) values (3, 1, 3100);

数据验证

MariaDB [temp]> select * from distance;
+----+---------+-------+------+
| id | from_id | to_id | dist |
+----+---------+-------+------+
|  1 |       1 |     2 | 1200 |
|  2 |       2 |     3 | 2300 |
|  3 |       3 |     1 | 3100 |
+----+---------+-------+------+
3 rows in set (0.00 sec)MariaDB [temp]> select * from city;
+----+------+
| id | name |
+----+------+
|  1 | BJ   |
|  2 | SH   |
|  3 | SZ   |
+----+------+
3 rows in set (0.00 sec)

Join

MariaDB [temp]> select c1.name as city1, c2.name as city2, distance.dist dist from distance inner join city c1 inner join city c2 where distance.from_id=c1.id and distance.to_id=c2.id;
+-------+-------+------+
| city1 | city2 | dist |
+-------+-------+------+
| BJ    | SH    | 1200 |
| SH    | SZ    | 2300 |
| SZ    | BJ    | 3100 |
+-------+-------+------+
3 rows in set (0.01 sec)MariaDB [temp]> select c1.name as city1, c2.name as city2, distance.dist dist from city c1 inner join city c2 inner join distance on distance.from_id=c1.id and distance.to_id=c2.id;
+-------+-------+------+
| city1 | city2 | dist |
+-------+-------+------+
| BJ    | SH    | 1200 |
| SH    | SZ    | 2300 |
| SZ    | BJ    | 3100 |
+-------+-------+------+
3 rows in set (0.00 sec)MariaDB [temp]> 

这篇关于MySQL-Join的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1137126

相关文章

使用shardingsphere实现mysql数据库分片方式

《使用shardingsphere实现mysql数据库分片方式》本文介绍如何使用ShardingSphere-JDBC在SpringBoot中实现MySQL水平分库,涵盖分片策略、路由算法及零侵入配置... 目录一、ShardingSphere 简介1.1 对比1.2 核心概念1.3 Sharding-Sp

MySQL 表空却 ibd 文件过大的问题及解决方法

《MySQL表空却ibd文件过大的问题及解决方法》本文给大家介绍MySQL表空却ibd文件过大的问题及解决方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考... 目录一、问题背景:表空却 “吃满” 磁盘的怪事二、问题复现:一步步编程还原异常场景1. 准备测试源表与数据

Mac电脑如何通过 IntelliJ IDEA 远程连接 MySQL

《Mac电脑如何通过IntelliJIDEA远程连接MySQL》本文详解Mac通过IntelliJIDEA远程连接MySQL的步骤,本文通过图文并茂的形式给大家介绍的非常详细,感兴趣的朋友跟... 目录MAC电脑通过 IntelliJ IDEA 远程连接 mysql 的详细教程一、前缀条件确认二、打开 ID

MySQL的配置文件详解及实例代码

《MySQL的配置文件详解及实例代码》MySQL的配置文件是服务器运行的重要组成部分,用于设置服务器操作的各种参数,下面:本文主要介绍MySQL配置文件的相关资料,文中通过代码介绍的非常详细,需要... 目录前言一、配置文件结构1.[mysqld]2.[client]3.[mysql]4.[mysqldum

MySQL中查询和展示LONGBLOB类型数据的技巧总结

《MySQL中查询和展示LONGBLOB类型数据的技巧总结》在MySQL中LONGBLOB是一种二进制大对象(BLOB)数据类型,用于存储大量的二进制数据,:本文主要介绍MySQL中查询和展示LO... 目录前言1. 查询 LONGBLOB 数据的大小2. 查询并展示 LONGBLOB 数据2.1 转换为十

Go语言连接MySQL数据库执行基本的增删改查

《Go语言连接MySQL数据库执行基本的增删改查》在后端开发中,MySQL是最常用的关系型数据库之一,本文主要为大家详细介绍了如何使用Go连接MySQL数据库并执行基本的增删改查吧... 目录Go语言连接mysql数据库准备工作安装 MySQL 驱动代码实现运行结果注意事项Go语言执行基本的增删改查准备工作

MySQL按时间维度对亿级数据表进行平滑分表

《MySQL按时间维度对亿级数据表进行平滑分表》本文将以一个真实的4亿数据表分表案例为基础,详细介绍如何在不影响线上业务的情况下,完成按时间维度分表的完整过程,感兴趣的小伙伴可以了解一下... 目录引言一、为什么我们需要分表1.1 单表数据量过大的问题1.2 分表方案选型二、分表前的准备工作2.1 数据评估

SQL Server 查询数据库及数据文件大小的方法

《SQLServer查询数据库及数据文件大小的方法》文章介绍了查询数据库大小的SQL方法及存储过程实现,涵盖当前数据库、所有数据库的总大小及文件明细,本文结合实例代码给大家介绍的非常详细,感兴趣的... 目录1. 直接使用SQL1.1 查询当前数据库大小1.2 查询所有数据库的大小1.3 查询每个数据库的详

MySQL中REPLACE函数与语句举例详解

《MySQL中REPLACE函数与语句举例详解》在MySQL中REPLACE函数是一个用于处理字符串的强大工具,它的主要功能是替换字符串中的某些子字符串,:本文主要介绍MySQL中REPLACE函... 目录一、REPLACE()函数语法:参数说明:功能说明:示例:二、REPLACE INTO语句语法:参数

MySQL设置密码复杂度策略的完整步骤(附代码示例)

《MySQL设置密码复杂度策略的完整步骤(附代码示例)》MySQL密码策略还可能包括密码复杂度的检查,如是否要求密码包含大写字母、小写字母、数字和特殊字符等,:本文主要介绍MySQL设置密码复杂度... 目录前言1. 使用 validate_password 插件1.1 启用 validate_passwo