Forum Moderators: open
TABLE ACCOUNTS [acctID, acctRep]
1 ¦ BOB
2 ¦ SALLY
3 ¦ JIM
4 ¦ BOB
In order to normalize the table I moved the Account Rep's to their own table as such:
TABLE ACCOUNT_REP [repID, repName]
1 ¦ BOB
2 ¦ SALLY
3 ¦ JIM
I now need to, using update query, update table ACCOUNTS to change acctRep from a name to an ID. Can someone please help me with the query using the newly created link table to update the master table?
-Mike