All,
This could be another simple question...here we go:
'Channel_Data_Table' contains 2 variable channels each with their corresponding channel ID column.
Channel_Data_Table:
Channel A, Channel A_ID, Channel B, Channel B_ID
'Conversion Table' is used to store channel ID's and their associated conversion factors.
Conversion Table:
Channel_ID, Conversion Factor
I need to create a query that will take the value under the Channel field, utilize the corresponding Channel_ID, reference the Conversion Table, multiply the Conversion Factor by the Channel Information and provide this as an output.
How is this done? Do I have to perform multiple INNER JOINs? In reality, I actually have 15 channels that I need to do this with, but for discussion purposes, I wanted to keep it simple at 2.
Any tips or suggestions would be helpful. Thanks.
This could be another simple question...here we go:
'Channel_Data_Table' contains 2 variable channels each with their corresponding channel ID column.
Channel_Data_Table:
Channel A, Channel A_ID, Channel B, Channel B_ID
'Conversion Table' is used to store channel ID's and their associated conversion factors.
Conversion Table:
Channel_ID, Conversion Factor
I need to create a query that will take the value under the Channel field, utilize the corresponding Channel_ID, reference the Conversion Table, multiply the Conversion Factor by the Channel Information and provide this as an output.
How is this done? Do I have to perform multiple INNER JOINs? In reality, I actually have 15 channels that I need to do this with, but for discussion purposes, I wanted to keep it simple at 2.
Any tips or suggestions would be helpful. Thanks.