Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Multi database Sum Process

    dwain.c (7/22/2013)


    rackerland (7/22/2013)


    If I understand what you're asking for correctly, this should do it:

    SELECT C.Name, SUM(P.Total), SUM(O.Total)

    FROM Customer AS C

    LEFT OUTER JOIN [Order] AS O

    ON O.CustomerID =...

  • RE: Multi database Sum Process

    Thanks for the answers

    but the result is wrong

    my datebase sqlite

    rackerland (7/22/2013)


    If I understand what you're asking for correctly, this should do it:

    SELECT C.Name, SUM(P.Total), SUM(O.Total)

    FROM Customer AS C

    ...

Viewing 2 posts - 1 through 2 (of 2 total)