I have two views on two separate servers.
These views output the name, month, count
One view a person(Joe User) may have just July, August so it would show like this
Joe User July 19
Joe User August 28
The next view they may have some more
Joe User May 20
Joe User June 98
Joe User July 18
Joy User August 24
What I am trying to get the output to display is this.
Joe User January 0 0
Joe User February 0 0
Joe User March 0 0
Joe User April 0 0
Joe User May 20 0
Joe User June 98 0
Joe User July 18 19
Joe User August 24 28
Joe User September 0 0
Joe User October 0 0
Joe User November 0 0
Joe User December 0 0
My question is how can I populate months even if they do not have values? Then join the values I do have.
Update:
With the examples below I get very similar results. Here is what I get when I try to run it without adding the name to WHERE.
Joe User April 65 518
Joe User April 87 518
Joe User April 52 518
Joe User April 3 518
This repeats with table values for 64 lines per month.
Demo on SQLFiddle
UPDATE
New Demo on SQLFiddle