zoukankan      html  css  js  c++  java
  • mysql几种连接方式区别

    mysql的几种join

    2017年03月19日 14:49:07 carl-zhao 阅读数:7845 标签: mysqlsqljoin 更多

    个人分类: MySQL

    版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012410733/article/details/63684663

    之前学习mysql的时候对于老师说的左连接,右连接…之类的概念一直不清楚,模模糊糊的。工作之后理解这些名词一概念,现在把它记录一下。也希望能够帮助对于mysql中join不太清晰的朋友。这样可以根据自己的业务场景选择合适的join语句。

    初始化SQL语句:

    1.  
      /*join 建表语句*/
    2.  
      drop database if exists test;
    3.  
      create database test;
    4.  
      use test;
    5.  
       
    6.  
      /* 左表t1*/
    7.  
      drop table if exists t1;
    8.  
      create table t1 (id int not null,name varchar(20));
    9.  
      insert into t1 values (1,'t1a');
    10.  
      insert into t1 values (2,'t1b');
    11.  
      insert into t1 values (3,'t1c');
    12.  
      insert into t1 values (4,'t1d');
    13.  
      insert into t1 values (5,'t1f');
    14.  
       
    15.  
      /* 右表 t2*/
    16.  
      drop table if exists t1;
    17.  
      create table t2 (id int not null,name varchar(20));
    18.  
      insert into t2 values (2,'t2b');
    19.  
      insert into t2 values (3,'t2c');
    20.  
      insert into t2 values (4,'t2d');
    21.  
      insert into t2 values (5,'t2f');
    22.  
      insert into t2 values (6,'t2a');
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    1、笛卡尔积

    两表关联,把左表的列和右表的列通过笛卡尔积的形式表达出来。

    mysql> select * from t1 join t2;
    • 1

    这里写图片描述

    2、左连接

    两表关联,左表全部保留,右表关联不上用null表示。

    这里写图片描述

    mysql> select * from t1 left join t2 on t1.id = t2.id;
    • 1

    这里写图片描述

    3、右连接

    右表全部保留,左表关联不上的用null表示。

    这里写图片描述

    mysql> select * from t1 right join t2 on t1.id =t2.id;
    • 1

    这里写图片描述

    4、内连接

    两表关联,保留两表中交集的记录。

    这里写图片描述

    mysql> select * from t1 inner join t2 on t1.id = t2.id;
    • 1

    这里写图片描述

    5、左表独有

    两表关联,查询左表独有的数据。

    这里写图片描述

    mysql> select * from t1 left join t2 on t1.id = t2.id where t2.id is null;
    • 1

    这里写图片描述

    6、右表独有

    两表关联,查询右表独有的数据。

    这里写图片描述

    mysql> select * from t1 right join t2 on t1.id = t2.id where t1.id is  null;
    • 1

    这里写图片描述

    7、全连接

    两表关联,查询它们的所有记录。

    这里写图片描述

    oracle里面有full join,但是在mysql中没有full join。我们可以使用union来达到目的。

    1.  
      mysql> select * from t1 left join t2 on t1.id = t2.id
    2.  
      -> union
    3.  
      -> select * from t1 right join t2 on t1.id = t2.id;
    • 1
    • 2
    • 3

    这里写图片描述

    8、并集去交集

    两表关联,取并集然后去交集。

    这里写图片描述

    1.  
      mysql> select * from t1 left join t2 on t1.id = t2.id where t2.id is null
    2.  
      -> union
    3.  
      -> select * from t1 right join t2 on t1.id = t2.id where t1.id is null;
    • 1
    • 2
    • 3

    这里写图片描述

  • 相关阅读:
    COBBLER无人值守安装
    消息头 Content-Type引发的问题:Jmeter请求中postdata不是期望的,响应数据请求参数为null;已经请求没问题,可变量还是为空
    python爬虫-'gbk' codec can't encode character 'xa0' in position 134: illegal multibyte sequence
    正则表达式30分钟入门教程-链接
    linux常见命令学习汇总3-控制语句
    postman循环操作及响应判断-支持文本多变量输入
    linux常见命令学习汇总2-运算符
    linux常见命令学习汇总1
    Jmeter连接数据库方法与问题:Cannot load JDBC driver class 'com.mysql.jdbc.Driver'
    mysql学习笔记-ifnull()函数与nullif()函数
  • 原文地址:https://www.cnblogs.com/bruce1992/p/14017825.html
Copyright © 2011-2022 走看看