作業ノート

様々なまとめ、雑感など

replace関数でタブ文字を削除する

SQL> select replace('a' || chr(9) || 'b' || chr(9) || 'c', chr(9)) as str from dual;

STR
---
abc

SQL>