Birden fazla sütunun benzersiz satırı (ör. İlişkiler tablosu) tanımlaması durumunda, aşağıdakileri kullanabilirsiniz
Emp_dept (empid, deptid, startdate, enddate) satır kimliğini kullanın. Empid ve deptid öğelerinin benzersiz olduğunu varsayalım ve bu durumda satırı tanımlar
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);
ve bu tabloda birincil anahtar varsa, rowid yerine birincil anahtar kullanın, örneğin 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);