这是我在sql server 2008中的查询 -
UPDATE a
SET a.col2 = 'new',
a.col3 = 'www.google.com',
b.col1 = '10'
FROM table a
INNER JOIN table b ON a.col1 = b.col1
WHERE a.col1 = 7
Run Code Online (Sandbox Code Playgroud)
它崩溃说"无效的列名b.col1."
我该如何工作?