Aim: In Python, I would like to populate a table "Units_temp" with records, then join "Units_temp" with table "Units" and update "Units". In other words, all items in "Units_temp" which does not exist in "Units" yet should be added to "Units". When the joining is done I would like to empty "Units_temp" so it is clean when i put new records into it the next time. I am using MS Access pyodbc.
inserting records into "Units_temp" works, it is the joining part I am struggling with.