gpt4 book ai didi

php - 获取所有未关注用户 2 的用户

转载 作者:行者123 更新时间:2023-11-29 18:13:10 26 4
gpt4 key购买 nike

示例:我想获取所有不关注 id 2 用户的用户

表关注者

   id     |   user_id   |  follower_id

1 2 7
2 2 8

表用户

id  |  username  | e-mail  | group

最佳答案

试一下:

Select users.* 
from users
where users.id not in (
select followers.follower_id
from followers
where followers.user_id = "2"
)

关于php - 获取所有未关注用户 2 的用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47233448/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com