I'm trying to create a query that gives me a log of hours spend per person per task. I have a log table with the following columns: TaskID, PersonID, Hours.
Eventually the log should look something like this:
person1 | task1 | x hours
person1 | task2 | x hours
person2 | task1 | x hours
So it has to be grouped by both person and task.
It's the total hours that's giving me trouble.
So far this is what I have:
SELECT m.Name, t.Task, Sum(l.Hours) AS TotalHours
FROM Member AS m, Log AS l, Tasks AS t
WHERE t.TaskID=l.TaskID
GROUP BY t.Task, m.Name;
However, this gives me a list of unique person-task combinations but with the total amount of hours spend on that task and not the total amount of hours spend on that task per person.
Hopefully I've explained the problem clear enough so that you can help me.
Many thanks in advance.