I am trying to create a table that looks like the following, I was wondering if there was a quick way to create it rather than use a ton of unions.
| Week_No | Day_Of_Week |
| 1 | 1 |
| 1 | 2 |
| 1 | 3 |
| 1 | 4 |
| 1 | 5 |
| 2 | 1 |
| 2 | 2 |
| 2 | 3 |
| 2 | 4 |
| 2 | 5 |
I need to create it so the week_no goes up to 53, each week has to have 1-5.
I am using Sql Server.
Regards,
Neil