In my scenario I have the following 2 tables:
Table 1: tdc_doc_field_def
Column 1: field_id
Column 2: field_name
Table 2: tdc_doc_field_data
Column 1: info_card_id
Column 2: field_id
Column 3: field_data
Inside of Table 1 I have 3 field_names I need to get, txtAppProposedChangeDesc, txtAppProposedChangeTechBasis and txtAppProposedChangeWorkConductedBy.
Inside of Table 2 is the field_data for those fields.
What I need is a parameterized query that if I specify the info_card_id I am able to get the 3 fields of data. I have the following query that will get me the data from one field name data but not all three:
SELECT
tdc_doc_field_data.field_data AS txtProposedChange
FROM tdc_doc_field_def
INNER JOIN tdc_doc_field_data
ON tdc_doc_field_def.field_id = tdc_doc_field_data.field_id
WHERE
(tdc_doc_field_data.info_card_id = '[txtInfoCardNumber]')
AND (tdc_doc_field_def.field_name = 'txtAppProposedChangeDesc')
Need help to expand this to help me get all three, txtAppProposedChangeDesc, txtAppProposedChangeTechBasis and txtAppProposedChangeWorkConductedBy? I'd really appreciate it!
EDIT:
I need to return the result set into the mapped values into my SELECT AS query.