I want to update rows in the [To]
table, from rows in the [From]
table, where the keys are equal. So this is what I'd do:
UPDATE [To]
SET [To].[Name] = [From].[Name],
[To].[Size] = [From].[Size],
[To].[Something] = [From].[Something]
FROM [From]
WHERE [To].[Id] = [From].[Id];
go
Problem is, CE doesn't support FROM
in the UPDATE
command.
So, how do I change this syntax to work in CE?