PHP - MySQL,排序克隆
我有 mysql 数据库和表用户。在用户中有列:id、username、password、ip
我有管理面板,我需要显示具有相同 ip 的用户,例如
User1 → User2
Nick1 → Nick2
等。
我如何使用 php 做到这一点。谢谢,以及这很紧急。谢谢。
I have mysql database with table users. In users there are columns:id , username , password , ip
I have administration panel and I need to show users that have same ip , like this
User1 → User2
Nick1 → Nick2
etc.
How can i do it with php.Thanks , and this is urgent.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是您的 sql 查询。
对于在 PHP 中使用:
更新:
请尝试以下查询:
Here is your sql query.
For use in PHP:
UPDATE:
Try this query instead:
像这样获取重复 IP 的列表,
SELECT COUNT(*) as acount, ip FROM users GROUP BY ip HAVING acount > 1
然后使用这些结果,获取与这些 IP 匹配的所有帐户
Get your list of duplicate IP's like this,
SELECT COUNT(*) as acount, ip FROM users GROUP BY ip HAVING acount > 1
then using those results, get all accounts that match those IP's