If have rows table like this
    id      content
    1       this five lenght is 12345
    2       this five lenght is 23456
    3       this six lenght is 234567
    4       this six lenght is 238567       
Then when I want to select and group by content, it will result
    SELECT * FROM table GROUP BY content
    1       this five lenght is 00000
    3       this six lenght is 000000
Is there a way to achieve this, that can replace number with zero in mysql query?
Many thanks in advance.
 
     
    