i was using this code before i went to mysql
UPDATE Strom
SET Strom.Length = Top.Length
FROM
Strom
INNER JOIN Top ON Strom.IdAtr_00 = Top.IdAtr_00
this doesn't seem to be correct update syntax for mysql, then i'm getting error when running this code:
You have an error in your SQL syntax near 'FROM Strom INNER JOIN Top ON Strom.IdAtr...
table and column names are correct
anyone here who knows how to do the same on mysql?
thanks
UPDATE Strom
SET Strom.Length = Top.Length
FROM
Strom
INNER JOIN Top ON Strom.IdAtr_00 = Top.IdAtr_00
this doesn't seem to be correct update syntax for mysql, then i'm getting error when running this code:
You have an error in your SQL syntax near 'FROM Strom INNER JOIN Top ON Strom.IdAtr...
table and column names are correct
anyone here who knows how to do the same on mysql?
thanks