Hi Guys
could you please help me how to replace single quote with double quotes in data services
I have tried with replace_substr(column_nm, '''','"')
but it is giving an error on parsing:-
<Syntax error at line <1>: <>: near <'> found <;> expecting <')', ','>
Regards
Request clarification before answering.
Screen the single tick: replace_substr(column_nm, '\'','"')
Thank you,
Viacheslav.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
The solution is you need to override the single quote with \'
so put '\''
The solution is
replace_substr(column_nm,, '\'','"');
I checked this is working
Thanks
Annesha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.