I was wondering if there was a way to alternate data taken from two different columns in a query, then placing that data into a another query or table. For example, let's say I have the following query, with the respective columns:
column1.......c olumn2
A.............. ......1
B.............. ......2
C.............. ......3
D.............. ......4
Then I would like to input the above information into another query/table like so:
A
1
B
2
C
3
D
4
Is there any way to successfully do this?
column1.......c olumn2
A.............. ......1
B.............. ......2
C.............. ......3
D.............. ......4
Then I would like to input the above information into another query/table like so:
A
1
B
2
C
3
D
4
Is there any way to successfully do this?
Comment