0

電話会社の管理に関する 5 つのテーブルがあります。

  1. 顧客 ( custIDcFnamecontractIDなど)

  2. 契約 ( contractID, Duration, productCode)

  3. 予定 ( productCode, planType, price)

  4. 請求 ( billNo, custID, productCode, status(eg; pending/ settle))

  5. 製品 ( productCode, productName, productDescription)

このクエリは、5 か月間契約しており、月額 RM59 のみの WirelessInternet プランを使用している顧客ID顧客名を見つけるためのものです。また、顧客からの保留中の請求ステータスも表示する必要があります。5 つのテーブルごとに 2 つの属性を表示してください。

私を助けてください。どんな助けでも本当に感謝しています。

4

1 に答える 1

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'
于 2012-12-20T11:05:21.440 に答える