• Don't aggregate the values on your Widget table, just group by them.

    SELECT W.ID,
       W.Group,
       SUM( WD.Payment) AS Payment,
       W.Invoice
    FROM Widget W
    JOIN WidgetDetail WD ON W.ID = WD.ID
    GROUP BY W.ID, W.Group, W.Invoice;

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2