有谁知道如何在 SAP Hana(存储过程)中获取数组的最大索引。
如何通过一次调用填充的 SAP Hana 字符串数组来获得最大索引。
我正在寻找类似的东西:
MaxIdx := stringarray.RowCount;
有谁知道如何在 SAP Hana(存储过程)中获取数组的最大索引。
如何通过一次调用填充的 SAP Hana 字符串数组来获得最大索引。
我正在寻找类似的东西:
MaxIdx := stringarray.RowCount;
您可以使用该功能获得最大索引
CARDINALITY
对于您的示例:
MaxIdx := CARDINALITY(:stringarray);
来源:http ://help.sap.com/hana/sap_hana_sql_script_reference_en.pdf