NetworkGuy101
IS-IT--Management
Is there a way for me to get duplicate record that match certain criteria. Like only if there are duplicates in the subjectid field and criteriaid field? Help is appreciated.
Thanks,
Joe
Thanks,
Joe
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select subjectid
, criteriaid
, count(*) as howmanydupes
from yourtable
group
by subjectid
, criteriaid
having count(*) > 1