0

I have a tuple with my_string = '12345', I want to turn it into this tuple: ('1','2','3','4','5').

Tried: REGEX_EXTRACT_ALL(my_string, '(.)') and got only (1).

4

1 に答える 1

1

Replace を使用して (1,2,3,4,5,6) に変換します。

REPLACE(my_string,'(?<!^)(.)',',$1');
于 2012-12-16T16:53:49.017 に答える