我有一個MSSQL數據庫名稱組織加入了多個表
我有3個表:
Table 1 named Organization
Table 2 named Product
Table 3 named IPAddress
表1收益約1000個結果這是罰款。
SELECT distinct OrganizationName, AssetNumber
FROM OrganizationList
Where OrganizationName = 'orgname'
我希望看到的是每個組織的資產編號。我不知道如何做到這一點。我知道需要一個連接,並嘗試了一堆來自網絡的例子,但我無法使其工作。
此外,我想能夠得到的名稱IP地址對每個資產
的問題我一個運行到是我需要從組織OrganizationID
山坳從產品的OrganizationID
山坳比賽,我需要匹配ProductId
從產品和ProductId
從IPAddress
任何幫助將不勝感激。請讓我知道你是否需要更多的信息。
謝謝
您應該發佈所有表結構 - 每個表具有的列。 – gotqn