snowflake.snowpark.functions.listagg¶
- snowflake.snowpark.functions.listagg(e: Union[Column, str], delimiter: str = '', is_distinct: bool = False) Column[source]¶
Returns the concatenated input values, separated by delimiter string. See LISTAGG for details.
- Parameters:
e – A
Columnobject or column name that determines the values to be put into the list.delimiter – A string delimiter.
is_distinct – Whether the input expression is distinct.
Examples: