UPDATE tablaCH
SET Rst = Rst - 5
FROM tablaCH JOIN tablaMB ON tablaCH.Account = tablaMB.Account
WHERE (tablaMB.Name = 'Vp') AND (tablaMB.Stat = 1)
AND (tablaNUEVA.Vp = 0);
Al poner la ultima linea, el debugger me dice esto:
Cita:
Tengo poco conociemiento de sql y llegue a armala simple al query, pero con la tercer linea, se me complicaron un poco las cosas. Msg 468, Level 16, State 9, Line 4
Cannot resolve the collation conflict between "Modern_Spanish_CI_AS" and "Modern_Spanish_CS_AS" in the equal to operation.
Msg 4104, Level 16, State 1, Line 4
The multi-part identifier "tablaNUEVA.Vp" could not be bound.
Cannot resolve the collation conflict between "Modern_Spanish_CI_AS" and "Modern_Spanish_CS_AS" in the equal to operation.
Msg 4104, Level 16, State 1, Line 4
The multi-part identifier "tablaNUEVA.Vp" could not be bound.
Como puedo hacerla bien?