No caso de várias colunas identificarem uma linha exclusiva (por exemplo, tabela de relações), você poderá usar as seguintes
Use o ID da linha, por exemplo, emp_dept (empid, deptid, startdate, enddate) suponha que empid e deptid sejam exclusivos e identifiquem a linha nesse caso
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);
e se essa tabela tiver chave primária, use chave primária em vez de rowid, por exemplo, 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);