I have three tables and I want to join them so that no value is repeated in the columns.
My tables are
1. Cir
Cirno Address
C111 50 Yonge St
C112 15 Victoria Park
2. Appl
Applno Cirno Address
A500 C112 15 Victoria Park
A501 C112 60 Flower Town
A502 90 Law Av.
3. Per
Perno Cirno Applno
P888
P889
P890 C112 A500
P891 C112 A501
P892 C112 A501
P893 C112 A501
P894 A502
I want to see results
Cirno Applno Per
C111 NA NA
C112 A500 P890
A501 P891
P892
P893
NA A502 P894
NA is not data available.
Any Suggestions? Thanks in Ad.
My tables are
1. Cir
Cirno Address
C111 50 Yonge St
C112 15 Victoria Park
2. Appl
Applno Cirno Address
A500 C112 15 Victoria Park
A501 C112 60 Flower Town
A502 90 Law Av.
3. Per
Perno Cirno Applno
P888
P889
P890 C112 A500
P891 C112 A501
P892 C112 A501
P893 C112 A501
P894 A502
I want to see results
Cirno Applno Per
C111 NA NA
C112 A500 P890
A501 P891
P892
P893
NA A502 P894
NA is not data available.
Any Suggestions? Thanks in Ad.