Please let me know how to use UNION query in MS Access. I have a table A with columns (RMName, AUM, AUA( and Table B with Columns (RMName, NNA, REV)
I want the result to be displayed as:
Code:
Table 1
RMName, AUM, AUA
James 10 2
David 20 6
Andrew 18 4
Table 2
RMName, NNA, REV
James 6 3
Paul 3 1
I want the result to be displayed as:
Code:
RMName, AUM, AUA NNA, REV
James 10 2 6 3
David 20 6 0 0
Andrew 18 4 0 0
Paul 0 0 3 1