У випадку, коли кілька стовпців ідентифікують унікальний рядок (наприклад, таблиця відносин), ви можете використовувати наступне
Використовуйте ідентифікатор рядка, наприклад, emp_dept (empid, deptid, startdate, enddate), припустимо, що empid і deptid є унікальними і ідентифікуйте рядок у цьому випадку
select oed.empid, count(oed.empid)
from emp_dept oed
where exists ( select *
from emp_dept ied
where oed.rowid <> ied.rowid and
ied.empid = oed.empid and
ied.deptid = oed.deptid )
group by oed.empid having count(oed.empid) > 1 order by count(oed.empid);
і якщо така таблиця має первинний ключ, тоді використовуйте первинний ключ замість rowid, наприклад id тоді pk
select oed.empid, count(oed.empid)
from emp_dept oed
where exists ( select *
from emp_dept ied
where oed.id <> ied.id and
ied.empid = oed.empid and
ied.deptid = oed.deptid )
group by oed.empid having count(oed.empid) > 1 order by count(oed.empid);