有三张表
帖子表
id username
1 ahmed
用户表
id title
1 test post
post_users
user_id post_id
1 1
post_users(有两个字段 user_id 和 post_id)多对多
当我想发送帖子 id=1 时,我想从用户表中选择在 post_users 表中没有一行的用户(在一个查询中)。如何?