I have a query that I created that finds all the duplicates in a table based on a unique ID. Now what I would like to do is narrow that query down to find only those records where:
1. ID's are equal
AND
2. A field called "SANC_DATE" is equal for those IDs
I don't even know where to start here.
Example:
I would want to only pull those records where ID and SANC_DATE are equal.
1. ID's are equal
AND
2. A field called "SANC_DATE" is equal for those IDs
I don't even know where to start here.
Example:
Code:
ID | SANC_DATE | END_DATE
------|-------------|------------
53 01-23-2004 12-31-9999
53 01-23-2004 1-23-2006
I would want to only pull those records where ID and SANC_DATE are equal.