The data I get back when I run
SELECT program, df_date, SUM(direct) AS acwp FROM opp.tphase WHERE class = 'AC' AND program = 'E01043' GROUP BY program, df_date
is:
Program DF_Date ACWP
E01043 10/30/2005 1204.55
E01043 11/27/2005 711.08
E01043 12/25/2005...
No, it won't. It is possible for projects (users) to fix past data. While this has caused much consternation for those trying to build reports it is allowed to happen.
At any one run of the query it would only be getting data for one Program. So there will probably be another part of the...
The table I'm working in has 4 columns that I am worried about: Program, direct, df_date and class.
What I need to do is a sum of direct with a group_by program and df_date where class = 'AC'. Simple enough. However, the values I need to pull for the sum need to be a sum of all items on that...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.