• Select a.account_id, a.bill_contact, a.bill_address, cc.cc_number, cc.cc_type, cc.cc_exp

    From Account a, (Select *

    From Credit_Card) As cc

    Where (a.bill_method = 'CC' AND

    a.account_id = cc.account_id)

    MW


    MW