jimmyshoes
Programmer
I am trying to combine the update statement with an inner join
(Both tables have unique field names so I have not used AS )
I am getting the error 'Incorrect syntax near the keyword 'INNER'.'
Code:
Update Table1 INNER JOIN Table2
On table1Col = table2Col
SET somefield = 'New Name'
(Both tables have unique field names so I have not used AS )
I am getting the error 'Incorrect syntax near the keyword 'INNER'.'