如何在pl / sql中将123转换为1,2,3?

时间:2016-11-18 13:40:36

标签: plsql

是否可以在pl / sql中将123转换为1,2,3?

有没有简单的方法在pl / sql中转换或添加两个数字之间的逗号?

谢谢。

1 个答案:

答案 0 :(得分:3)

您不需要PL / SQL。 regexp_replace会执行此操作:

rtrim(regexp_replace('123','(\d)','\1,'),',')