Hi,
I want to write a select query in such a way that should return only [A-Z]|[a-z]|[0-9] character from a table field and disgard other character from it.
For example the table products
part_numbers
MP-97
987/plt543-009
bbbPPP trww\d2_99
will return
MP97
987plt543009
bbbPPPtrwwd299
the result should have no space,dashes,slases. Result only have [A-Z]|[a-z]|[0-9] character.
Please help me to write such query in mysql. I should be much thankfull.