I ve done some homework on this issue and I am pretty sure it will involve joining a table with itself but I m not quite there yet.
我有一个“职位”表的论坛。 它为论坛上的每一个员额储存管道、用户名称、使用渠道和邮资。
我正试图得到一个问询,我可以每周或每星期开一次,这样,我就能够拿出一份清单,列出多个用户在此期间使用的管道和涉及多个用户使用同一地址的工厂。
I ve got this so far from other people s similar questions here:
SELECT t1.userid,t2.userid, t1.username, t2.username, t1.ipaddress, t2.ipaddress, t1.postid, t2.postid
FROM qvb_post t1
INNER JOIN qvb_post t2 ON t1.ipaddress=t2.ipaddress AND t1.userid!=t2.userid
WHERE
t1.dateline > 1335897698 AND t2.dateline > 1335897698
但是,它退回了海事组织的许多不必要牢房,例如,它每重复两种方式,例如如果使用1台旧车,就使用2个排垫,而如果使用2台旧车,则再次重复使用1号车。
The dateline is from a few days ago.
理想的情况是,我只想看到一个Pip地址清单,以便有重复的用户名称和每个员额重复使用,因此,我可以与PHP一起,并提出报告,说明如何编制IP地址、使用该地址的用户名称(用户)以及他们创建的海报。
I am aware that there are many valid reasons two people will have the same ip address, rest assured no harsh action would be taken against anyone merely for showing up in this report.
事先感谢你能够提供的任何帮助。
简言之,用购买力平价计算,只有我需要帮助的才能。