只要其中某个表存在匹配,full join 关键字就会返回行。
FULL JOIN 关键字语法
SELECT column_name(s)
FROM table_name1
FULL JOIN table_name2
ON table_name1.column_name=table_name2.column_name
注释:在某些中, FULL JOIN 称为 FULL OUTER JOIN。
postgres=#postgres=# CREATE TABLE t1 (postgres(# num int,postgres(# name varchar(10)postgres(# );CREATE TABLEpostgres=#postgres=# insert into t1 values(1,’a’);INSERT 0 1postgres=# insert into t1 values(2,’b’);INSERT 0 1postgres=# insert into t1 values(3,’c’);INSERT 0 1postgres=#postgres=# CREATE TABLE t2 (postgres(# num int,postgres(# name varchar(10)postgres(# );CREATE TABLEpostgres=#postgres=# insert into t2 values(1,’xxx’);INSERT 0 1postgres=# insert into t2 values(3,’yyy’);INSERT 0 1postgres=# insert into t2 values(5,’zzz’);INSERT 0 1postgres=#postgres=# SELECT * FROM t1 FULL JOIN t2 ON t1.num = t2.num; num | name | num | name—–+——+—–+—— 1 | a | 1 | xxx 2 | b | | 3 | c | 3 | yyy | | 5 | zzz
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/1835658.html