ROW 및 LIST는 복잡한 함수에서 결합되었습니다.
SET OutputRoot.XML.Data.Country[] = LIST{ROW('UK' AS name,'pound' AS currency), ROW('US' AS name, 'dollar' AS currency), 'default'};위의 결과는 다음과 같습니다.
<Data> <Country> <name>UK</name> <currency>pound</currency> </Country> <Country> <name>US</name> <currency>dollar</currency> </Country> <Country>default</Country> </Data>
ROW 및 ROW가 아닌 값을 LIST 내에서 자유롭게 혼합할 수 있습니다.
LIST는 ROW의 하나의 구성원이 될 수 없습니다. 이름 지정된 스칼라 값만이 ROW의 구성원이 될 수 있습니다.