Selecting duplicates with complete row values
How to select duplicate rows with conditions?
I have a table with duplicate IDs, but some of the values from other rows are missing. What I need to do is to delete the duplicate row with missing information and retain the complete one.
For example:
IDNameAge1Jane121Jane 2John163Anna 3Anna154Mark
Rows 3, 5 should be deleted. I know "Select duplicate rows( Match( :Col1, :Col2 ) );" but I'm not s...