查询以拆分SAP中的分隔字符串hana

问题描述 投票:0回答:1

我们要求sap HANA将逗号分隔的字符串拆分为行 -

string - A,B

我们想要输出 -

col1 
A
B

是否可以使用SAP HANA?

最好的祝福

sap hana
1个回答
0
投票

您可以尝试以下SQLScript library to split text into table表格

do
begin using SQLSCRIPT_STRING as lib;

declare tbl table (result varchar(10));
declare strVal varchar(200);
strVal = 'A,B';
tbl := lib:split_to_table( :strVal, ',' );

select result as col1 from :tbl;

end;
© www.soinside.com 2019 - 2024. All rights reserved.