Update and add new records

crug

Registered User.
Local time
Today, 23:22
Joined
May 12, 2006
Messages
15
Hi all I have a table "tblEmployee" which has "name, employee_no, manager, etc" I recieve from HR a updated spreadsheet which can have new employees or just updates. ie new manager name. I can run an update query to update changes based on the employee_no which is constant. How can i add new starters from this list ?
 
Create an update query that joins the existing table with the updates table using a right join. This will update all matching records and add any new ones in a single step.
 
Thanks i'll give that ta try
 

Users who are viewing this thread

Back
Top Bottom