我们要求sap HANA将逗号分隔的字符串拆分为行 -
string - A,B
我们想要输出 -
col1
A
B
是否可以使用SAP HANA?
最好的祝福
您可以尝试以下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;