📜  在 ESQL 数组中搜索值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:28.147000             🧑  作者: Mango

代码示例1
--https://www.ibm.com/docs/en/integration-bus/9.0.0?topic=performance-esql-code-tips
DECLARE myChar CHAR;
DECLARE inputRef REFERENCE TO InputRoot.MRM.myParent.myRepeatingRecord[1];
WHILE LASTMOVE(inputRef) DO
    SET myChar = inputRef;
    MOVE inputRef NEXTSIBLING NAME 'myRepeatingRecord';
END WHILE;