I've got big MySQL database. I need to delete the duplicate item quickly. Here's how it looks:
id | text1 | text2|    
1  | 23    |  43  |   
2  | 23    |  44  |  
3  | 23    |  44  |
After the deleting, the remain part of table should be:
id | text1 | text2|   
1  | 23    |  43  |   
3  | 23    |  44  |
I don't care about the id. the most important is no duplicate items will be disappear.
 
     
     
    