gpt4 book ai didi

mysql - SQL选择多ip用户

转载 作者:行者123 更新时间:2023-11-29 02:17:34 25 4
gpt4 key购买 nike

我有 user_idip

我需要所有具有多个 user_id

的 IP

示例表

|user_id| |ip|
1, 127.0.0.1
2, 127.0.0.1
3, 82.12.12.12
3, 82.12.12.12
3, 92.15.15.15

所以我的结果需要是 127.0.0.1

以下查询为我提供了多次使用的所有 IP

SELECT ip, COUNT(user_id) 
FROM user_login_histories
GROUP BY ip HAVING COUNT(DISTINCT(user_id)) > 1
ORDER BY ip

我错过了什么

最佳答案

试试这个:

SELECT ip, COUNT(DISTINCT(user_id)) 
FROM user_login_histories
GROUP BY ip
HAVING COUNT(DISTINCT(user_id)) > 1
ORDER BY COUNT(DISTINCT(user_id))

关于mysql - SQL选择多ip用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37211690/

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