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

Eliminazione di record correlati in MySQL

DELETE
    Posts,
    Comments
FROM Posts
INNER JOIN Comments ON
    Posts.PostID = Comments.PostID
WHERE Posts.PostID = $post_id;

Supponendo che la tabella dei commenti abbia un campo PostID, che designa il post a cui appartiene un commento.