[Solved] How To Eliminate Duplicates of Following SQL Data Values? [closed]
[ad_1] DELETE FROM Table_Name A INNER JOIN (SELECT NIC, COUNT(*) AS RecCount, MIN(RESULT) AS OlderValue FROM Table_Name GROUP BY NIC) b ON A.NIC = b.NIC AND a.RESULT != b.OlderValue 1 [ad_2] solved How To Eliminate Duplicates of Following SQL Data Values? [closed]