mysql没有full join_mysql中的几种join 及 full join问题 (仅学习)

【注意】:Oracle数据库支持full join,mysql是不支持full join的,但仍然可以同过左外连接+ union+右外连接实现

初始化SQL语句:

/*join 建表语句*/drop database if exists test;create database test;use test;

/* 左表t1*/drop table if exists t1;create table t1 (id int not null,name varchar(20));insert into t1 values (1,'t1a');insert into t1 values (2,'t1b');insert into t1 values (3,'t1c');insert into t1 values (4,'t1d');insert into t1 values (5,'t1f');

/* 右表 t2*/drop table if exists t2;create table t2 (id int not null,name varchar(20));insert into t2 values (2,'t2b');insert into t2 values (3,'t2c');insert into t2 values (4,'t2d');insert into t2 values (5,'t2f');insert into t2 values (6,'t2a');

1、笛卡尔积(没有加筛选条件的内连接)

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

mysql> select * from t1 join t2;

或者

mysql> select * from t1 inner join t2;

或者

mysql> select * from t1, t2;

2、左连接

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

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

3、右连接

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

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

4、内连接

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

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

5、左表独有

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

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

6、右表独有

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

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

7、全连接

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

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

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

8、并集去交集

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

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

9、自然连接

通过MySql自己的判断完成连接过程,不需要指定连接条件。MySql会使用表内的,相同的字段,作为连接条件。

自然连接分为内外之分。

如果两个表有多个相同字段,或者没有相同字段,则自然连接返回为空。

修改表的字段名称

ALTER TABLE t1 CHANGE COLUMN name t1_name VARCHAR(20)

ALTER TABLE t2 CHANGE COLUMN name t2_name VARCHAR(20)

自然连接,内连接

自然连接,左连接

自然连接,右连接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值