DELETE
Posts,
Comments
FROM Posts
INNER JOIN Comments ON
Posts.PostID = Comments.PostID
WHERE Posts.PostID = $post_id;
コメントテーブルに、コメントが属する投稿を指定するフィールドPostIDがあるとします。
DELETE
Posts,
Comments
FROM Posts
INNER JOIN Comments ON
Posts.PostID = Comments.PostID
WHERE Posts.PostID = $post_id;
コメントテーブルに、コメントが属する投稿を指定するフィールドPostIDがあるとします。