I am trying to write an update query with no luck. I have two tables _calc_RptData and tbl_RptData. Currently the table tbl_RptData has 0 in the column I need populated called clntid. The information I need is in the _calc_RptData table. I want to update the tbl_RptData with the info from the _calc_RptData table. When I run the query it says do you want to update 247000 records. Since I only want to update 497 records I say no.
Code:
UPDATE _calc_RptData INNER JOIN tbl_RptData ON [_calc_RptData].UCI = tbl_RptData.UCI SET tbl_RptData.clntID = [_calc_RptData.clntID]
WHERE (((tbl_RptData.clntID)=0));