I have a problem, I feel like I know this but I cannot find a solution.
I have a temp table where I generated a date range.
TempTable
Date
11/1/2017
11/2/2017
11/3/2017
11/4/2017
11/5/2017
Need to join to this table:
Date User Permissions
11/1/2017 A 2
11/2/2017 A 4
11/5/2017 A 7
11/3/2017 B 1
11/4/2017 B 2
This is the result I am looking for. However, a join does not yield result.
Date User Permissions
11/1/2017 A 2
11/2/2017 A 4
11/3/2017 A 0
11/4/2017 A 0
11/5/2017 A 5
11/1/2017 B 0
11/2/2017 B 0
11/3/2017 B 1
11/4/2017 B 2
11/5/2017 B 0