H, I have two tables
tbl_ new and tbl_copy both have same structure and field names but the data will vary among the tables So
Tbl_ new (id, first name, last name ) has 3 records and
tbl_copy ( id , first nbame, last name) has 2 records .So when you compare the data in both tables tbl_copy has 1 new record which should be added to the tbl_ new . And the other record in the tbl_copy is a common one , i will explain with an example
tbl_new id first name last name
1 john mclaine
2 .... ....
3 ...... ......
tbl_ copy 1 john williams
SO the last name is different in the tbl_copy i need to update that last_ name in the tbl_new. data in all the fields could change. i just 3 fields as an example but my table has a lot of fields so i do not want to go through each field specifically in the table . i just want to add the records with new information in the tbl_copy to the existing records in the tbl_new. How do i need to do that. Please Help me out. Thank you.
tbl_ new and tbl_copy both have same structure and field names but the data will vary among the tables So
Tbl_ new (id, first name, last name ) has 3 records and
tbl_copy ( id , first nbame, last name) has 2 records .So when you compare the data in both tables tbl_copy has 1 new record which should be added to the tbl_ new . And the other record in the tbl_copy is a common one , i will explain with an example
tbl_new id first name last name
1 john mclaine
2 .... ....
3 ...... ......
tbl_ copy 1 john williams
SO the last name is different in the tbl_copy i need to update that last_ name in the tbl_new. data in all the fields could change. i just 3 fields as an example but my table has a lot of fields so i do not want to go through each field specifically in the table . i just want to add the records with new information in the tbl_copy to the existing records in the tbl_new. How do i need to do that. Please Help me out. Thank you.