I'm trying to update a table with the following:
UPDATE clean SET clean.branchid = branches.branchid FROM clean WHERE clean.ppi = branches.ppi
I tried it with an INNER JOIN but that also gave me the following error:
syntax error(missing operator) in query expression 'branches.branchid FROM clean'
If you have any ideas, I will gladly hear them. I'm sure it's just a stupid little mistake I made.
Thanks!