How can I update values in a table with values in another table where values in a common field are equal in SQL Server 7? In Access the following code works, but not in sql server
UPDATE tbl1 INNER JOIN tbl2
ON tbl1.CommonField = tbl2.CommonField
SET tbl2.FieldToUpdate =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.