MySQL多表查詢回顧

2021-08-05 20:23:57 字數 791 閱讀 3359

----------------------siwuxie095

mysql 多表查詢回顧

以客戶和聯絡人為例(一對多)

1、內連線

/*內連線寫法一

*/select* fromt_customer c,t_linkman l wherec.cid=l.clid

/*內連線寫法二(

inner

可以省略不寫)

*/select* fromt_customer c inner joint_linkman l onc.cid=l.clid

2、左外連線

/*左外連線(

outer

可以省略不寫):左表的所有資料,右表的關聯資料

*/select* fromt_customer c left outer joint_linkman l onc.cid=l.clid

3、右外連線

/*右外連線(

outer

可以省略不寫):右表的所有資料,左表的關聯資料

*/select* fromt_customer c right outer joint_linkman l onc.cid=l.clid

【made by siwuxie095】

mysql多表 MySQL 多表查詢

多表查詢 select listname from tablename1,tablename2 笛卡爾積 多表查詢中,如果沒有連線條件,則會產生笛卡爾積 數學中的定義 假設集合a 集合b 則兩個集合的笛卡爾積為 實際執行環境下,應避免使用笛卡爾積 解決方案 在where加入有效的連線條件 等值連線 ...

mysql多表查詢方式 MySQL多表查詢方式問題

你的 sql 沒有用到任何索引,對 a b 兩個表都是全表掃瞄,在資料量小的時候是沒有問題的,但是如果資料量超過 100 萬,效能問題就會突顯出來。這裡不清楚你的 created at 欄位是什麼型別,不過從你的 date format created at,y m d 看來,應該是 datetim...

mysql 多表查詢or MySQL 多表查詢

前期準備 建表create table dep id int,name varchar 20 create table emp id int primary key auto increment,name varchar 20 enum male female not null default ma...