i have a table like this.
ID Name Tag
1 Orange tea
2 Pear light
3 Apple tea
4 Juice tea
5 Cocoa baseball
6 Camera baseball
What I want to do is for rows that have duplicate TAGS, I want to update the name of FIRST occurence with the LATEST occurence.
So in example above, I would like to update ID 1's name from Orange to Juice and delete the others (#3,#4) And update ID 5 from Cocoa to Camera and delete #6.
How would I do that using MySQL with PHP? Or maybe possible to just do it inside MySQL?
Thanks!