My sql table is have not primary key column. I can find dublicate rows but i dont know how i can remove to one to rest; Let me explain;
col1 col2 col3 col4
10 0 1000 1
10 0 1000 1 --> should be deleted
10 0 1111 2 --> should be deleted
10 1 1000 1
10 2 1000 1
15 0 1000 1
15 0 1000 1 --> should be deleted
16 0 1000 1
I use col1 and col2 for understand row is dublicate. Same time "10" "0" must be unique but tables can contains many "10" or many "0" value.
Thanks.