📅  最后修改于: 2022-03-11 14:55:28.147000             🧑  作者: Mango
--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;