How can I clean up a table by removing the duplicate records?
+----------+--------+------------+
| clientID | status | Insertdate |
+----------+--------+------------+
|        1 | new    |   20191206 |
|        1 | new    |   20191206 |
|        2 | old    |   20191206 |
|        2 | old    |   20191206 |
|        3 | new    |   20191205 |
|        3 | new    |   20191205 |
+----------+--------+------------+
I don't have any identity field.
 
     
     
    