EMPTYLIST ER function
The EMPTYLIST
function returns an empty Record list value by using the specified list as a source for the list structure.
Syntax
EMPTYLIST (list)
Arguments
list
: Record list
The valid path of a data source of the Record list data type.
Return values
Record list
The resulting list of records.
Example
EMPTYLIST (SPLIT ("abc", 1))
returns a new empty list that has the same structure as the list that is returned by the SPLIT
function that is used.