2012-12-20 56 views
0

我有電信管理的主題在5個表:MySQL的顯示兩個屬性從每個五個表

  1. 顧客(custIDcFnamecontractID等)

  2. 合同(contractIDDurationproductCode

  3. plan(productCodeplanTypeprice

  4. 計費(billNocustIDproductCodestatus(例如; pending/settle))

  5. 產品(productCodeproductNameproductDescription

該查詢找到卡斯特ID客戶名稱這在合同5個月,並使用WirelessInternet只計劃RM59 /月。它還需要顯示來自客戶的待處理的賬單狀態。請顯示每5張桌子2 attibutes。

請幫幫我。任何幫助真的很感激。

+2

您是否嘗試過? – Kathiravan

+0

你有沒有工作或嘗試或這是家庭工作? –

+0

我試過了,但結果不是我想要的。 – umika1150

回答

0

希望這會幫助你,

select custID,cFname from Customer cust,Contract cont,plan p,billing b 
    where cust.contractID=cont.contractID 
    and cont.Duration='5 Months' and p.planType='RM59/month' 
    cust.custID=b.custID and b.status='pending' 
+0

它需要有10個列,每個列表有2個屬性。 – umika1150