Hello everyone,
This one is been driving me crazy, my statement looks like this:
I have tables a and b
update dbo.a
set column = b.column
from dbo.a inner join dbo.b
on a.id = b.id
When I run this statement my column gets updated with the text "b.colunm" instead of the value from table b
What am I doing wrong?
Rgds.
Rene.
This one is been driving me crazy, my statement looks like this:
I have tables a and b
update dbo.a
set column = b.column
from dbo.a inner join dbo.b
on a.id = b.id
When I run this statement my column gets updated with the text "b.colunm" instead of the value from table b
What am I doing wrong?
Rgds.
Rene.