BoulderBum
Programmer
If I have tables A and B which have fields x and y respectively, how can I construct a view or query such that I stick every record of A.x and every record of B.y into a single resulting field?
For instance, if A.x has:
1, 3, 5
and B.y has:
2, 3, 4
I want the result of the query to contain:
1, 2, 3, 4, 5
in a single column.
For instance, if A.x has:
1, 3, 5
and B.y has:
2, 3, 4
I want the result of the query to contain:
1, 2, 3, 4, 5
in a single column.