Hi All,
select '\';
The above will give me error because mysql uses '\' as escape character.
So i changed the query to,
select '\\';
Here i don't want to worry with escape character stuff. So i need a function
which takes the parameter
1> parameter value = '\'
return value = '\\'
2> parameter value = '\t'
return value = '\t'
2> parameter value = 'St'Johns'
return value = 'St''Johns'
Is there any function like this ?
select '\';
The above will give me error because mysql uses '\' as escape character.
So i changed the query to,
select '\\';
Here i don't want to worry with escape character stuff. So i need a function
which takes the parameter
1> parameter value = '\'
return value = '\\'
2> parameter value = '\t'
return value = '\t'
2> parameter value = 'St'Johns'
return value = 'St''Johns'
Is there any function like this ?
Comment