I am not even sure this is possible but here goes. I am developing a report that shows units into the dock and units received into Oracle. I need to show each day (every day) how many were received at the dock and how many were received into Oracle. The trick is including the days where nothing was received at all.
Date | Dock Count | Oracle Count
------------------------------------------
Monday 11/1 | 12 | 10
Tuesday 11/2 | 5 | 7
Wednesday 11/3| 0 | 0
Thursday 11/4 | 22 | 10
Friday 11/5 | 0 | 12
So, is there a way to do this? I thought about taking a list of dates from another table that I know has data for each day but that just seems like an inefficient way of doing this.
Note: I am using MySQL