Description
Converts one or more expressions to type tuple.Syntax
TOTUPLE(expression[,expression...])
Examples
TOTUPLE('Alan','64','1.88') returns ((Alan,64,1.88)).
Convert one or more expressions into a tuple data type. Use TOTUPLE for grouping related values into structured records in ETL data pipelines.
TOTUPLE(expression[,expression...])
TOTUPLE('Alan','64','1.88') returns ((Alan,64,1.88)).
Was this page helpful?