Could somebody please help me with this....
I'm about to join 2 tables...
Table1
User NoOfPrintsInP1 Time
--------------------------------------------
James 5 18:00
James 6 18:30
Joshua 1 18:35
Mo 5 18:55
Table2
User NoOfPrintsInP2 Time
--------------------------------------------
James 1 15:00
James 2 15:05
Joshua 3 15:30
James 5 16:00
I suppose to do a query that outputs the total number of both NoOfPrints per User. It should be something like this...
User NoOfPrintsInP1 NoOfPrintsInP2
-----------------------------------------------------
James 11 8
Joshua 1 3
Mo 5 0
I did a Inner Join but it didn't output the way I expect and the numbers are wrong... what went wrong?

any ideas?