Cara paling sederhana adalah dengan menghapus dari setiap tabel satu per satu:
-- Remove all connections from A which reference
-- the B-rows you want to remove
DELETE FROM A_has_B
WHERE B_id IN (1,2,4);
-- Remove all connections from C which reference
-- the B-rows you want to remove
DELETE FROM C_has_B
WHERE B_id IN (1,2,4);
-- Finally remove the B-rows
DELETE FROM B
WHERE B_id IN (1,2,4);
MySQL juga memungkinkan Anda untuk menghapus dari beberapa tabel dalam satu pernyataan. Tetapi tidak ada cara untuk mengontrol urutan penghapusan. Dari manual :