Hallo,
is there any way to write it better in MySQL ?
SELECT id,name
FROM autors
WHERE REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(LCASE(name), ' ', ''), '.', ''), '\'', ''), '(the)', ''), '/', ''), '&', '') LIKE 'string to be cleaned from / (the) etc.'
I need to clean a string into a field in order to make one search more into db...
Thank you !!