hello - I am asking for some hints about how to MATCH sets of values in tbl_A with sets of values in a master table. (a sample of each table is shown below).
Each Set has exactly 3 distinct Values. The Rank columns identify the Values in ASC order.
I'm trying to get output that MATCHES Sets in tbl_A with Sets in tbl_Master. Like this...
Thanks in advance for any advice.
Teach314
Each Set has exactly 3 distinct Values. The Rank columns identify the Values in ASC order.
Code:
[bold]
tbl_A tbl_Master
ID_A Set_A Value_A Rank_A ID_M Set_M Value_M Rank_M [/bold]
......
1 9 36 2 2401 81 16 1
2 9 44 3 2402 81 38 2
3 9 13 1 2403 81 77 3
4 15 99 3 2404 82 19 1
5 15 62 2 2405 82 36 2
6 15 4 1 2406 82 64 3
7 20 19 1 2407 83 13 1
8 20 64 3 2408 83 36 2
9 20 36 2 2409 83 44 3
10 etc...... 2410 etc......
I'm trying to get output that MATCHES Sets in tbl_A with Sets in tbl_Master. Like this...
Code:
[bold]
Set_A Set_M [/bold]
9 83
15
20 82
Thanks in advance for any advice.
Teach314