I would suggest a union query but I don't know how familiar you are with writing SQL, so we'll create an append query instead. We could append the records from Table1 to Table2 but it looks like you're wanting to keep those tables intact. At any rate, we'll append to new Table3 in case the results aren't what you expected.
Since ISBN is the primary key in all three tables, you will be prevented from adding duplicate records.
1. If you haven't already created Table3, you can copy and paste the design from Table1 and append the data from Table1 all in one step. From your list of tables, select Table1 and do a copy and paste. In the 'Paste Table As' dialog name the table (Table3) and choose the 'Structure and Data' paste option.
Now, to add Table2 data
2. Open a new query in design view. Add Table2. By default, this will be a select query. Place all the fields from Table2 in the query grid, one column for each field.
3. Change to an append query by selecting it from the Query drop-down menu. You will be prompted for a table name. Select Table3 in your current database.
4. Since the fields have the same name in both tables, the append row of your query will be filled in automatically.
You are saying 'append ISBN field from Table2 to the field named ISBN in Table3'. If the field in the new table doesn't happen to have the same name, select the appropriate field from the combobox in the append row.
Hope this helps