HI
I have 2 tables.
table1 has all dates from DAY1 - DAY7
COL1
---------
DAY1
DAY2
DAY3
DAY4
DAY5
DAY6
DAY7
Table2 has effort entry and a date entry like this
COL1 COL2
----------------------------
DAY3 4
Now i need a SQL that will JOIN these 2 tables and produce the output as
COL1 COL2
----------------------------
DAY1 0
DAY2 0
DAY3 4
DAY4 0
DAY5 0
DAY6 0
DAY7 0
So if no days exist in table2 the value field should be filled with 0.