在mysql中是不顯示說明外鍵的,可以通過表與表之間來看!得到表之間的關(guān)聯(lián)!
為甘南等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及甘南網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、甘南網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
你說的是一對(duì)多吧,父子關(guān)系多難聽,
一對(duì)多可以用left join 鏈接查詢
select?*?from?account?left?join?tbs?on?account.id=tbs.cd;
我剛好有這么一條sql
select t1.name,t2.name,t3.name,t4.name
from tb as t1
left join tb as t2 on t2.pid=t1.id and t2.pid=1
left join tb as t3 on t3.pid=t2.id and t3.pid=2
left join tb as t4 on t4.pid=t3.id and t4.pid=3
where pid=0