Hey guys,I have this query:SELECT ORDER_LINE_T.Product_ID, Standard_Price,SUM(ORDER_LINE_T.Ordered_Quantity)*Standard_Price AS TotalFROM PRODUCT_TWHERE PRODUCT_T.Product_ID=ORDER_LINE_T.Product_IDAND ORDER_LINE_T.Order_ID=1GROUP BY ORDER_LINE_T.Product_ID, Standard_Price;
Which gives me totals of a certain order, now I want to take those TOTALS and add them up in another query to get the "Total of the totals", how can I do this?Thanks!