Below is the code that I have for a query. What I would
like to be able to do is somewhere in the query results
is show a total of Event Time for the Product Field.
Let's say there are 10 Fields for the same Product. I would
like to show a total of the Event_Times for that Product. I
would still like to see the 10 rows of information and then
a total. Any Suggestions?
like to be able to do is somewhere in the query results
is show a total of Event Time for the Product Field.
Let's say there are 10 Fields for the same Product. I would
like to show a total of the Event_Times for that Product. I
would still like to see the 10 rows of information and then
a total. Any Suggestions?
Code:
SELECT TIME55.PRODUCT, TIME55.BUILD_ID, TIME55.PROCESS, TIME55.SOE_CODE, TIME55.EVENT_NUMB, TIME55.EVENT, TIME55.EVENT_TIME, TIME55.PRODUCT_DE
FROM TIME55
GROUP BY TIME55.PRODUCT, TIME55.BUILD_ID, TIME55.PROCESS, TIME55.SOE_CODE, TIME55.EVENT_NUMB, TIME55.EVENT, TIME55.EVENT_TIME, TIME55.PRODUCT_DE
HAVING (((TIME55.BUILD_ID)="l177"))
ORDER BY TIME55.PRODUCT, TIME55.PROCESS, TIME55.SOE_CODE, TIME55.EVENT_NUMB;