I'm trying to update the values of a specific column in a data table using values in another data table. The update function seems like the logical choice but it always seems to add extra unmatched columns to the updated table. From the update utility there is an option for this
However there isn't any mention of this in either the scripting index
or in the help search. I've tried
dt << update(
with(dt2),
match(:name=:name),
ignore missing,
add columns from update(none)
);
but that doesn't seem to work. Does anyone know what the correct option is for this?