How to replace numeric character with "%" in MySQL ?
i.e : abcd 1234 zz => abcd %%%% zz
What I have :
Declare cursorVideoTitles cursor for select temp_playList.VideoTitle
from temp_playList where temp_playList.VideoTitle regexp '^[A-Za-z0-9]+$';
cursorVideoTitles contain all alphanumeric video titles. now after this I need to replace numeric character with "%"
Reason for this : I need to search it in other table which have same alphabets. so 1st I take all those values in cursor variable and iterate it with like query,so i will get matching records.