I am looking for something that will only return alphanumerical characters in an SQL Query
Right now I have two coloums, ttitle
and tsub
where the ttitle
could be Champ's Shack
and the tsub
could be "Grilled Cheese"
and I need it to return that field as champsshackgrilledcheese
So far I have gotten it down to champs'sshack"grilledcheese"
and I still need to remove those characters...
here is the code that gets it that far...
REPLACE(LOWER(CONCAT(TRIM(ttitle),TRIM(tsub))), ' ','')
What can I do to get it to return without symbols?? and only alphanumeric, I want to try and avoid SQL functions if possible