程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> sql 多表查詢的語句集合

sql 多表查詢的語句集合

編輯:MySQL綜合教程

今天我們來講一下關於如何多表查詢的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了,最後如果不是在不得己千萬別使用多表聯合查詢哦。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved