当前位置:数据库 > MySQL >>

sql 多表查询的语句集合

今天我们来讲一下关于如何多表查询的sql语句,先是最常见也是最突然的效绿也不怎么样的多表查询方法一

select * from A join B ON A.uid=B.uid join C ON C.uid=A.uid where uid=1

二、四个表查询

select * form A,B,C,D where A.uid=B.uid and B.uid=C.uid and C.uid=D.uid where uid=1

三、用别名查询

select * from table1 as a,table2 as b where a.id=b.id and a.id=2

四、left  join 表查询

select * from table1 a left join table2 b where a.id=b.id and a.id=2


上面四条查询语句,最有速度的要算left join了,最后如果不是在不得己千万别使用多表联合查询哦。

补充:数据库,mysql教程
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,