How can I delete a duplicate row?
Posted: Tue Oct 27, 2009 2:17 am
Here is my table.this table is creating automatically using for loop.Dont think about table just think about table data only.
id name age
1 a 24
1 b 25
2 c 20
2 d 21
3 e 19
3 f 19
1 a 24
1 b 25
2 c 20
2 d 21
3 e 19
3 f 19
I just want to delete or ignore duplicate rows when this table creating automatically.
Thank you..
id name age
1 a 24
1 b 25
2 c 20
2 d 21
3 e 19
3 f 19
1 a 24
1 b 25
2 c 20
2 d 21
3 e 19
3 f 19
I just want to delete or ignore duplicate rows when this table creating automatically.
Thank you..