mysql支持多個庫中不同表的關(guān)聯(lián)查詢,你可以隨便鏈接一個數(shù)據(jù)庫
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供惠民網(wǎng)站建設(shè)、惠民做網(wǎng)站、惠民網(wǎng)站設(shè)計、惠民網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、惠民企業(yè)網(wǎng)站模板建站服務(wù),10年惠民做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
然后,sql語句為:
select * from db1.table1 left join db2.table2 on db1.table1.id = db2.table2.id
只要用數(shù)據(jù)庫名加上"."就能調(diào)用相應(yīng)數(shù)據(jù)庫的數(shù)據(jù)表了.
數(shù)據(jù)庫名.表名
擴展資料
mysql查詢語句
1、查詢一張表:? ? ?select * from 表名;
2、查詢指定字段:select 字段1,字段2,字段3....from 表名;
3、where條件查詢:select 字段1,字段2,字段3 frome 表名 where 條件表達(dá)式;
例:select * from t_studect where id=1;
select * from t_student where age22
4、帶in關(guān)鍵字查詢:select 字段1,字段2 frome 表名 where 字段 [not]in(元素1,元素2);
例:select * from t_student where age in (21,23);? ? ?
select * from t_student where age not in (21,23);
5、帶between and的范圍查詢:select 字段1,字段2 frome 表名 where 字段 [not]between 取值1 and 取值2;
例:select * frome t_student where age between 21 and 29;
?select * frome t_student where age not between 21 and 29;
方法和操作步驟如下:
1、首先,創(chuàng)建一個測試表,如下圖所示,然后進(jìn)入下一步。
2、其次,插入測試數(shù)據(jù),如下圖所示,然后進(jìn)入下一步。
3、接著,完成上述步驟后,查詢表中的數(shù)據(jù),“select t.* from test_tbl2 t?”,如下圖所示,然后進(jìn)入下一步。
4、最后,完成上述步驟后,編寫sql,兩個表通過pid與id關(guān)聯(lián), “select t1.*, t2.* from test_tbl1 t1 join test_tbl2 t2 on t1.p_id = t2.id;”,如下圖所示。這樣,問題就解決了。
首先能實現(xiàn)目的的語法是這么寫:
select?id,name,a_rank
from?table_a,(
select?a_id,count(*)?as?a_rank
from?table_b
group?by?a_id
)
where?table_a.id?=?table_b.a_id
order?by?a_rank;