作者:鸵鸟家的大pp | 来源:互联网 | 2023-07-10 15:58
我有一个帖子表,它是带有3个表的外键。
如果要删除帖子,我希望所有评论图片和喜欢的图片也被post_id
删除。
post table
post_id text images_id
1 post 1
images table
images_id image
1 text
comments table
comments_id comment post_id
1 text 1
likes table
like_id status post_id
1 1 1
如何在一个查询中做到这一点?