I want to generate date value since 1/1/2011 - 31/12/2011 on sql query.
Example My Table A
Field A Field B Field C
1 01/01/2011 125
2 03/01/2011 100
3 05/01/2011 50
I want to result :
Field A Field B Field C
1 01/01/2011 125
0 02/01/2011 0
2 03/01/2011 100
0 04/01/2011 0
3 05/01/2011 50
...
0 31/12/2011 0
Please Advice Me and Thank a lot.
Under SQL Server, you can create a table-valued function rather than creating a temporary table, as this is reusable between queries:
This allows everything to be executed inside one query: