I\'m trying to do a query where it adds up the totals for the orders from each customer.
I have tried a few different ways but I am not sure the right way to do it.<
select CustomerID, count(OrderID) Orders, ShipName, sum(Total) Total from Order_TAB group by CustomerID, ShipName