Results 1 to 3 of 3

Thread: Sum Totals Per Column

  1. #1
    Ike Guest

    Sum Totals Per Column


    --Select Capital_Amount + Interest_Amount + Insurance_Amount + Admin_Fee
    --from Loan Where loan_no = '9110001AA667'
    --Select top 3* from loan

    Select sum(Capital_Amount) As Capital_Amount from Sales
    Select * from Sales

    How can l run these two Queries in the same view. l want to display what l have in the salesNew View and at the same time sum all the amount columns.But l'm not
    being successful. Is it achievable or l have to have two separate views?


    CREATE View SalesNew
    AS
    SELECT DISTINCT
    tr.Transaction_Date,
    tr.Loan_No,
    n.Store,
    n.User_Issued,
    n.LoanBook As Company,
    p.Product,
    n.Capital_Amount,
    n.Interest_Amount,
    n.Insurance_Amount,
    n.Admin_Fee,
    n.Total_Amount
    FROM Transaction_Record tr
    INNER JOIN Loan n
    ON tr.loan_No = n.loan_No AND tr.loan_No = n.loan_No
    INNER JOIN Product p ON n.product = p.product


    --2nd query

    Select n.loanbook As Company,Sum(n.Capital_Amount) As Capital_Amount,
    Sum(n.Interest_Amount) As Interest_Amount,
    Sum(n.Insurance_Amount) As Insurance_Amount,
    Sum(n.Admin_Fee) As Admin_Fee,
    Sum(n.Total_Amount) As Total_Amount
    From Loan n
    Group By n.loanBook with RollUp

  2. #2
    Jim Guest

    Sum Totals Per Column (reply)

    Form your second query as a view v_sum with fields loanbook, capital_amount, etc

    and havethe view you want as as join on loanbook with the transaction record table and v_sum view


    ------------
    Ike at 5/27/2002 3:51:39 AM


    --Select Capital_Amount + Interest_Amount + Insurance_Amount + Admin_Fee
    --from Loan Where loan_no = '9110001AA667'
    --Select top 3* from loan

    Select sum(Capital_Amount) As Capital_Amount from Sales
    Select * from Sales

    How can l run these two Queries in the same view. l want to display what l have in the salesNew View and at the same time sum all the amount columns.But l'm not
    being successful. Is it achievable or l have to have two separate views?


    CREATE View SalesNew
    AS
    SELECT DISTINCT
    tr.Transaction_Date,
    tr.Loan_No,
    n.Store,
    n.User_Issued,
    n.LoanBook As Company,
    p.Product,
    n.Capital_Amount,
    n.Interest_Amount,
    n.Insurance_Amount,
    n.Admin_Fee,
    n.Total_Amount
    FROM Transaction_Record tr
    INNER JOIN Loan n
    ON tr.loan_No = n.loan_No AND tr.loan_No = n.loan_No
    INNER JOIN Product p ON n.product = p.product


    --2nd query

    Select n.loanbook As Company,Sum(n.Capital_Amount) As Capital_Amount,
    Sum(n.Interest_Amount) As Interest_Amount,
    Sum(n.Insurance_Amount) As Insurance_Amount,
    Sum(n.Admin_Fee) As Admin_Fee,
    Sum(n.Total_Amount) As Total_Amount
    From Loan n
    Group By n.loanBook with RollUp

  3. #3
    Ike Guest

    Sum Totals Per Column (reply)

    Sorry need more help. Can Give me an example


    ------------
    Jim at 5/27/2002 7:53:46 AM

    Form your second query as a view v_sum with fields loanbook, capital_amount, etc

    and havethe view you want as as join on loanbook with the transaction record table and v_sum view


    ------------
    Ike at 5/27/2002 3:51:39 AM


    --Select Capital_Amount + Interest_Amount + Insurance_Amount + Admin_Fee
    --from Loan Where loan_no = '9110001AA667'
    --Select top 3* from loan

    Select sum(Capital_Amount) As Capital_Amount from Sales
    Select * from Sales

    How can l run these two Queries in the same view. l want to display what l have in the salesNew View and at the same time sum all the amount columns.But l'm not
    being successful. Is it achievable or l have to have two separate views?


    CREATE View SalesNew
    AS
    SELECT DISTINCT
    tr.Transaction_Date,
    tr.Loan_No,
    n.Store,
    n.User_Issued,
    n.LoanBook As Company,
    p.Product,
    n.Capital_Amount,
    n.Interest_Amount,
    n.Insurance_Amount,
    n.Admin_Fee,
    n.Total_Amount
    FROM Transaction_Record tr
    INNER JOIN Loan n
    ON tr.loan_No = n.loan_No AND tr.loan_No = n.loan_No
    INNER JOIN Product p ON n.product = p.product


    --2nd query

    Select n.loanbook As Company,Sum(n.Capital_Amount) As Capital_Amount,
    Sum(n.Interest_Amount) As Interest_Amount,
    Sum(n.Insurance_Amount) As Insurance_Amount,
    Sum(n.Admin_Fee) As Admin_Fee,
    Sum(n.Total_Amount) As Total_Amount
    From Loan n
    Group By n.loanBook with RollUp

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •