Hello every one:
I am missing a basic concept here. Any help will be appreciated.
I have two tables with lot of fields in both, but two common fields. Even they are not the primary keys but ID is unique and distinct in both so it is safe to join table with ID field.
Let say table A has A.ID and A.DATE fields.
Table B has B.ID and B.DATE fields.
I need to update the entire A.DATE field same as B.DATE for corresponding IDs.
What would be the best solution (APPEND / INSERT / UPDATE) and why? Since I am stuck with basic here, any syntax would be helpful.
Thanks.
Habib.
I am missing a basic concept here. Any help will be appreciated.
I have two tables with lot of fields in both, but two common fields. Even they are not the primary keys but ID is unique and distinct in both so it is safe to join table with ID field.
Let say table A has A.ID and A.DATE fields.
Table B has B.ID and B.DATE fields.
I need to update the entire A.DATE field same as B.DATE for corresponding IDs.
What would be the best solution (APPEND / INSERT / UPDATE) and why? Since I am stuck with basic here, any syntax would be helpful.
Thanks.
Habib.
Comment