I have two tables with identical fields.
I would like to merge them together without duplicating any records - there is one field which can be used to identify which data is to be transferred:
fields are: Barcode, Title, Author, ISBN, and Date Borrowed
Table A has some records with data only in: Barcode, ISBN, and Date Borrowed fields
Table B has records with data in: Title, Author, and ISBN fields
The barcode field is indexed and unique.
How do I merge them together so that the records in Table A contain the data from Table B whenever the ISBN data is the same, without ending up with duplicate records?
I can get a query to export the records from table A as a CSV file where the ISBN fields match (along with the data from Table B) but how do I delete this data from Table A in order to merge it with this csv file (or am I going about this the wrong way?)
Thanks,
Ian
I would like to merge them together without duplicating any records - there is one field which can be used to identify which data is to be transferred:
fields are: Barcode, Title, Author, ISBN, and Date Borrowed
Table A has some records with data only in: Barcode, ISBN, and Date Borrowed fields
Table B has records with data in: Title, Author, and ISBN fields
The barcode field is indexed and unique.
How do I merge them together so that the records in Table A contain the data from Table B whenever the ISBN data is the same, without ending up with duplicate records?
I can get a query to export the records from table A as a CSV file where the ISBN fields match (along with the data from Table B) but how do I delete this data from Table A in order to merge it with this csv file (or am I going about this the wrong way?)
Thanks,
Ian
Last edited: