I have a table full of dates, the dates are unique but for each date I want to have numbers 1-3. So as it stands now all the dates are distinct but my objective is to have a new column where each date has 3 rows instead of one with the numbers 1-3.
Right now my table looks like this:
Date
1/1/2016
2/1/2016
What I want is this:
Date | Number
1/1/2016 | 1
1/1/2016 | 2
1/1/2016 | 3
2/1/2016 | 1
2/1/2016 | 2
2/1/2016 | 3
Is this possible with a query?