Mysql
 sql >> Database >  >> RDS >> Mysql

Due tabelle:come eliminare le righe se l'ID non è referenziato in entrambe le tabelle

Dovresti usare una query secondaria

DELETE FROM images WHERE item_id NOT IN(SELECT item_id FROM listings)

Altri esempi e spiegazioni .