Seeking assistance on this one...
Sample Data Set:
rsrc_hr_id rsrc_id ts_id
----------- ----------- -----------
100 200 300
101 200 301
102 201 302
103 201 302
Looking for help with a query to query the data set where it pulls the distinct combinations of rsrc_id and ts_id where count is equal to one.
In the above example the output of what I want would be:
rsrc_id ts_id count
----------- ----------- ----------
200 300 1
200 301 1
Thanks in advance.
Sample Data Set:
rsrc_hr_id rsrc_id ts_id
----------- ----------- -----------
100 200 300
101 200 301
102 201 302
103 201 302
Looking for help with a query to query the data set where it pulls the distinct combinations of rsrc_id and ts_id where count is equal to one.
In the above example the output of what I want would be:
rsrc_id ts_id count
----------- ----------- ----------
200 300 1
200 301 1
Thanks in advance.