連接分為:內部連接、外連接、交叉連接。今天我們來學習一下,如何用MySQL建立內連線。
內連接定義:僅將兩個表中滿足連接條件的行組合起來作為結果集。
關鍵字:INNER JOIN
select * from employees e inner join department d on e.employee_id = d.department_id where e.employee_id = "1";
等價於
select * from employees e,department d where e.employee_id = d.department_id and e.employee_id = "1";
以上是mysql內連線怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!