I have two rows per patient_Id in table A and one row per patient_id in TableB. both are SQL tables residing on two different servers.
I need to update Table B (Results) with patient details from Table A. When I run select query with distinct key word I can see the details. But when I try to use update query its erroring " Operation must use updatable query".
How to handle this? Table A has a field called Aliquot_ID which is causing duplicate issue. I don't need that info in Table B.
Any thoughts to ignore A;iquot_id and match the records by Patient_id?
Thank you