I want ot update one table(TA) from another(TB) where TB has some data which is not present in TA.
Example TA has ID and Description columns and TB has ID and Description columns.
But some description which is present in TB is not present in TA so I want to update only that description.
I do not think the following will work...
update TB
set TB.Description = TA.Description
from TA
where TB.ID = TA.ID
Please correct me and tell how can I write this?