[Analysed table]-(runId,resultId,bugId)
[Bug Table]-(bugId,bugType)
[Runs]-(runId,failCount)
查詢:
select bugId,bugType,failCount
from Bug,Runs
inner join (select runId from Analysed where bugId=118)counts on counts.runId=Runs.runId
我沒有得到所需的result.I我得到空的輸出。
我想要的是爲RunId = 118我希望所有的Bug表詳細信息和失敗計數(來自運行表)。
我不知道我們是否需要分析表。
不要混合使用隱性和顯性連接語法 – 2015-02-10 06:27:29
我沒有得到你,請 – TRY123 2015-02-10 09:45:07