09-SQLite之join

前端之家收集整理的这篇文章主要介绍了09-SQLite之join前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、join概述

用于根据两个或多个表中的列之间的关系,从这些表中查询数据
现在有两张表persons和student


例子1:从上面两张表中获取name、addr、class(这是最普通的方式)



二、join(inner join内连接):如果表中有至少一个匹配,则返回行(结合原表分析)

语法:select persons.name,persons.addr,student.class from persons inner join student on persons.id = student.id;


三、left join (左连接)

概述:从左表 (persons) 那里返回所有的行,即使在右表 (student) 中没有匹配的行
语法:select persons.name,student.class from persons left join student on persons.id = student.id;


四、right join(右连接)

概述:即使左表中没有匹配,也从右表返回所有的行

五、full join(全连接)

概述:只要其中一个表中存在匹配,就返回行

六、注意:right join和full join在linux下sqlite3不支持

原文链接:https://www.f2er.com/sqlite/199705.html

猜你在找的Sqlite相关文章