Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用另一个表上的 LEFT JOIN 更新表(HRBI)。我在以下脚本上获得了一个语法区域:
UPDATE HRBI LEFT JOIN REMMINC ON (HRBI.[PayGroupCountryDesc] = REMMINC.[REMCountry]) AND (HRBI.[BusinessLvl1(Group)Code] = REMMINC.[BusinessGroup]);
这有什么明显的问题吗?谢谢!
您目前没有更新任何内容。
您需要符合以下set条件的条件:
set
UPDATE Table1 SET SomeColumnName = someValue WHERE SomeCondition = someOtherValue