gpt4 book ai didi

MYSQL使用其他表

转载 作者:行者123 更新时间:2023-11-29 21:42:08 26 4
gpt4 key购买 nike

此查询:

SELECT 
user_id,
count(base_item)
FROM items
WHERE base_item = '202'
group by user_id order by count(base_item)

给我这个结果:

enter image description here

我想要的。但是,我还希望它排除 users 表中 rank 为 5 或更高的所有用户 id。如这里所示

enter image description here

最佳答案

按如下方式修改您的 where 子句:

WHERE base_item = '202' AND user_id NOT IN (SELECT id FROM users WHERE rank > 5)

括号中的部分称为子查询。子查询的结果集包含所有排名大于5的用户的id。添加where子句会排除该结果集中的所有用户。

关于MYSQL使用其他表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34403979/

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