Kygall
Feb 14, 2010, 07:38 PM
I need help with the following problem.
Calculate the TOTAL actual cost for all over-budget projects managed by the manager named Graves.
I think I'm missing something from my answer, but I'm not sure how to get it.
I've written;
SELECT SUM (ACTUAL_COST)
FROM PROJECT, MANAGER
WHERE PROJECT.ACTUAL_COST = MANAGER.MG_NAME AND MG_NAME = GRAVES
Do I need to calculate the over-budget projects? If so, how do I write that?
Thanks in advance for your help!
Calculate the TOTAL actual cost for all over-budget projects managed by the manager named Graves.
I think I'm missing something from my answer, but I'm not sure how to get it.
I've written;
SELECT SUM (ACTUAL_COST)
FROM PROJECT, MANAGER
WHERE PROJECT.ACTUAL_COST = MANAGER.MG_NAME AND MG_NAME = GRAVES
Do I need to calculate the over-budget projects? If so, how do I write that?
Thanks in advance for your help!