assume I have a table with column looking like this: de/a/la/les/un/une/oi/ke/el/para/d/pour/for/l/en/ (this is all 1 value in 1 column on 1 row).
I want to convert these values to %de /%a /%la /%les /.... and so on.
Basically, I am trying to build a basis for regexp expression which I will use later.
So I figured, I need to convert my original string to ARRAY by using SPLIT(orignal,'/') and then convert every item from the array by CONCAT('%',original,' ')... But I am failing to write a query which would work...
Any ideas?
DZ