I am wondering if it is possible to remove duplicate text using a mysql query from one field, or if a problem like this would be better solved using PHP.
I have a databa
IMO, you're best to handle this with PHP
$uniqueTags = array_unique(explode(' ', $tagsFromDbColumn));