I want to select from a mysql table and return the most popular string in a column
for example, if i have 6 rows and a column called producttype
producttype = 'One'
producttype = 'One'
producttype = 'Two'
producttype = 'Three'
producttype = 'Three'
producttype = 'Three'
it will return the string Three because there is more rows of that than anything else
 
    