2017-03-10 44 views
-3

請誰能幫助我?MariaDB - 選擇

我有這些表:

資產

id | name 
1234 | server1 
2345 | server2 
3456 | activeYES 
4567 | activeNO 
5678 | new 
6789 | old 

ASSET_ASSOCIATED

id | associated_id 
1234 | 3456 
1234 | 5678 
2345 | 4567 
2345 | 6789 

如何選擇在name列中的值匹配 'activeYES' 的價值觀和 '新'在associated_id列中知道我期望看到'server1'作爲輸出?

+0

你可以添加你想要得到這個樣本的輸出?這會使問題更加清楚。 – Mureinik

+0

當然可以!對不起!我期望看到'server1'作爲輸出。 –

回答

0

你可以使用內部聯接和條款

select * from ASSET_ASSOCIATED 
inner join ASSET on ASSET.id = ASSET_ASSOCIATED.associated_id 
where ASSET.name in ('new', ' activeYES'); 

基於數據 這retunr server1的

select ASSET.name 
from ASSET 
where id in (select distinct ID from 
    from ASSET_ASSOCIATED 
    inner join ASSET on ASSET.id = ASSET_ASSOCIATED.associated_id 
    where ASSET.name in ('new', ' activeYES') 
) 
+0

你好,謝謝你的回答,但是我最終沒有在我的問題中提出一個重要的數據,那就是我想要得到值'server1'作爲結果。 –

+0

@FelippeTabachidaCruz answer updated .. – scaisEdge