V
Victoria
hi
I think this is a beginner's question, but I'm missing something. Lets say
I have a table:
empID(pk) Max_ACount
123 5
136 2
154 3
How can I generate this Query?
empID ACount
123 1
123 2
123 3
123 4
123 5
136 1
136 2
154 1
154 2
154 3
For any given empID, ACount runs from 1 to Max_ACount
thank you in advance
Victoria
I think this is a beginner's question, but I'm missing something. Lets say
I have a table:
empID(pk) Max_ACount
123 5
136 2
154 3
How can I generate this Query?
empID ACount
123 1
123 2
123 3
123 4
123 5
136 1
136 2
154 1
154 2
154 3
For any given empID, ACount runs from 1 to Max_ACount
thank you in advance
Victoria