Here's a simple SQL that updates Mid_Name on the Name3 table using the Middle_Name field from Name:
update name3set mid_name = name.middle_namefrom namewhere name3.person_id = name.person_id;
Here's a simple SQL that updates Mid_Name on the Name3 table using the Middle_Name field from Name:
update name3set mid_name = name.middle_namefrom namewhere name3.person_id = name.person_id;