I am trying to replace an escape character with a string, but the query gives me an irrelevant result
eg- char - '\' replace with "adfc" below request
SELECT REPLACE("abcdefgh\i","\\", "adfc" );
output - abcdefghi
Desired conclusion - abcdefghadfci
How can I achieve this in mysql?
source share