我需要知道是否有任何方法只使用mysql查询来完成下面的任务。 我想检查2个帐户是否在last_login_from columm上有相同的IP地址。我希望查询返回last_login_from columm中没有唯一值的所有行
答案 0 :(得分:3)
select *
from accounts a
where a.last_login_from IN
( select last_login_from
from accounts
group by last_login_from
having count(*)>1 )