I have two tables and I would like to do a query to update one table using a subquery and not able to make it happen.
What I would like to do is to read using nITSR from table a and match the field (nITSR) with the xITSR from table b and then update the pPraceBillerAmount in table a from the Biller field in table b.
The query that I tried is;
SELECT tmpJSFExpense.nITSR, tmpJSFExpense.pRacticeBilerAmount, qryTOupdateTBLexpense.Biller
FROM tmpJSFExpense INNER JOIN qryTOupdateTBLexpense ON tmpJSFExpense.nITSR = qryTOupdateTBLexpense.xITSR;
I tried several options but continue to get error.
Suggestions will be appreciated. Or help with this query that will be great. Want to understand and learn the "how to" so that I can learn for the future.
Thank you for the help.
Luis
What I would like to do is to read using nITSR from table a and match the field (nITSR) with the xITSR from table b and then update the pPraceBillerAmount in table a from the Biller field in table b.
The query that I tried is;
SELECT tmpJSFExpense.nITSR, tmpJSFExpense.pRacticeBilerAmount, qryTOupdateTBLexpense.Biller
FROM tmpJSFExpense INNER JOIN qryTOupdateTBLexpense ON tmpJSFExpense.nITSR = qryTOupdateTBLexpense.xITSR;
I tried several options but continue to get error.
Suggestions will be appreciated. Or help with this query that will be great. Want to understand and learn the "how to" so that I can learn for the future.
Thank you for the help.
Luis