Hi,
I’m a little rusty on my join logic, and was wondering if someone could help me with the following. I think I need to use either a Self-Join or a Union for this but I’m not sure.
I have a mapping table that currently houses three main products. There are cables associated with those products. As you can see below, Product #3 also has a cable (#10) that isn’t available for products #2 and #3.
Ultimately in my application, I want to list out each cable, however, if there’s a cable that’s only applicable to a certain product and not shared by all products, I’d like that to stand out as well. I can just asterisk it and say 'Only available with Product X.'
What’s the best way to list out each cable individually, but also list out an cables who have an “orphan” product?
I looked at it for most of the morning this morning, and I’m fluctuating between using a Self-Join, Union or Right Join. My tablename is CableMapping and the fields are CableMapID, ProductModelID and CableID.
Table: CableMapping
Cable Product CableID
MapID ModelID
------- ------- ------
1 1 1
2 1 2
3 1 3
4 2 1
5 2 2
6 2 3
7 3 1
8 3 2
9 3 3
10 3 10
Thanks in advance for any help.
Mickeyj2
I’m a little rusty on my join logic, and was wondering if someone could help me with the following. I think I need to use either a Self-Join or a Union for this but I’m not sure.
I have a mapping table that currently houses three main products. There are cables associated with those products. As you can see below, Product #3 also has a cable (#10) that isn’t available for products #2 and #3.
Ultimately in my application, I want to list out each cable, however, if there’s a cable that’s only applicable to a certain product and not shared by all products, I’d like that to stand out as well. I can just asterisk it and say 'Only available with Product X.'
What’s the best way to list out each cable individually, but also list out an cables who have an “orphan” product?
I looked at it for most of the morning this morning, and I’m fluctuating between using a Self-Join, Union or Right Join. My tablename is CableMapping and the fields are CableMapID, ProductModelID and CableID.
Table: CableMapping
Cable Product CableID
MapID ModelID
------- ------- ------
1 1 1
2 1 2
3 1 3
4 2 1
5 2 2
6 2 3
7 3 1
8 3 2
9 3 3
10 3 10
Thanks in advance for any help.
Mickeyj2