I have a query that pulls data in the following format:
A - B
1 - 2
1 - 3
2 - 4
3 - 5
I want the query to eliminate record 1 - 2 and keep 1 - 3. Is that possible?
Everything I've read tells me I can only eliminate duplicate records that are identical, therefore a query won't remove record 1 - 2 because the second column has a different value.