dndaughtery
Programmer
I need to update a field in a table called "RejectCollections" with a value from a temp table with the name "TigerTemp" based on matching fields called "rejectid". Below is what I have, will this work correctly?
Update RejectCollections Set RejectCollections.COLL_TOTAL = TigerTemp.COLL_Total
Where RejectCollections.RejectID = TigerTemp.RejectID
Update RejectCollections Set RejectCollections.COLL_TOTAL = TigerTemp.COLL_Total
Where RejectCollections.RejectID = TigerTemp.RejectID