I am migrating an Access query to SQL Server, the problem is that in Access it allows to perform INNER JOIN in the UPDATE
UPDATE (Aux_Nodos INNER JOIN Nodos_NULL_Titular ON Aux_Nodos.Necesidad = Nodos_NULL_Titular.Necesidad)
INNER JOIN Out_Arcos ON Aux_Nodos.Id_Nodo = Out_Arcos.Id_Nodo_Destino
SET Out_Arcos.Id_Nodo_Destino = Nodos_NULL_Titular.Id_Nodo
At StackOverFlow in English, I saw that something had to be done, but I got an error
UPDATE dbo.Aux_Nodos SET Out_Arcos.Id_Nodo_Destino = Nodos_NULL_Titular.Id_Nodo
FROM Aux_Nodos
INNER JOIN Nodos_NULL_Titular ON Aux_Nodos.Necesidad = Nodos_NULL_Titular.Necesidad
INNER JOIN Out_Arcos ON Aux_Nodos.Id_Nodo = Out_Arcos.Id_Nodo_Destino
The error that appears is "The multi-part identifier" dbo.Out_Arcos.Id_No_Destino "could not be bound.", it does not recognize it in SET, obviously that table and column exist.