I have an endorsement type table linked to a master endorsement table with a foreign key
endorsement table
end_id
end_information
endorsement type
end_type_id
end_id
end_type
when users entered information to the form, the form was not properly linked and thus they did not see there were already records for those endorsements and they created duplicates, I have a list of the endorsement ids and their duplicates and I need to update the duplicates in the endorsement type table with the original endorsement id, is there a way I can do a batch update so I don't have to do it all manually
and there is also information that was entered in the endorsement table for the duplicate records that I need to transfer to the original records, is there any quicker way to do this than manually
endorsement table
end_id
end_information
endorsement type
end_type_id
end_id
end_type
when users entered information to the form, the form was not properly linked and thus they did not see there were already records for those endorsements and they created duplicates, I have a list of the endorsement ids and their duplicates and I need to update the duplicates in the endorsement type table with the original endorsement id, is there a way I can do a batch update so I don't have to do it all manually
and there is also information that was entered in the endorsement table for the duplicate records that I need to transfer to the original records, is there any quicker way to do this than manually