I don’t think you can combine an update with an in...
# spring
p
I don’t think you can combine an update with an inner join
t
Sure you can!
Copy code
update a
set a.field = b.field
from TableA a
inner join TableB b on a.b_id = b.id
where b.filter = 'value'