Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Calculating the Tally


    SELECT A.OwedTo, A.plus - B.minus AS Beer
    FROM
    (
       SELECT OwedTo, SUM(Beer) AS plus
        FROM myBeers
        GROUP BY OwedTo
    ) A
    INNER JOIN
    (
        SELECT OwedBy,...

Viewing post 1 (of 1 total)