Het enige wat u hoeft te doen is die ID's op te slaan in variabelen om te gebruiken in een query om in te voegen in de ab
tafel. LAST_INSERT_ID()
geeft de ID van de ingevoegde rijen terug. Dus in PHP bijvoorbeeld:
// Run command to insert into A, then:
$a = mysql_query('SELECT LAST_INSERT_ID();');
// Run command to insert into B, then:
$b = mysql_query('SELECT LAST_INSERT_ID();');
// Then $a and $b hold the IDs that you can use to insert into AB.
mysql_query("INSERT INTO ab (a_id, b_id) VALUES ($a, $b);");