I create my queries in design mode. I am not flash using sql. How would I go about merging two tables "T1" and "T2" to create a table called "Combined" as set out below.
T1
claim amt1
1 10
2 20
3 30
T2
claim amt2
2 15
5 25
7 35
Combined (what I want)
claim amt2 amt1
2 15 20
5 25
7 35
1 10
3 30
T1
claim amt1
1 10
2 20
3 30
T2
claim amt2
2 15
5 25
7 35
Combined (what I want)
claim amt2 amt1
2 15 20
5 25
7 35
1 10
3 30