gpt4 book ai didi

mysql - 选择链接行数少于 10 的数据

转载 作者:行者123 更新时间:2023-11-29 23:05:33 24 4
gpt4 key购买 nike

我在 mySQL 数据库中有 2 个表:

  • 代理:ID, host, port, user, pw
  • 帐户:proxyID, column

我想获取帐户表<=10中出现ID的所有代理次。

SELECT count(ProxyId) from Account

不知道如何从这里继续并获取出现次数小于 10 的代理值。

最佳答案

select a.Id from proxy a, account b
where a.ID = b.proxyId
group by a.ID
having count(*) <= 10

关于mysql - 选择链接行数少于 10 的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28310965/

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