snowflake.snowpark.table_function.TableFunctionCall.alias

TableFunctionCall.alias(*aliases: str) TableFunctionCall[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/table_function.py#L172-L197)

Alias the output columns from the output of this table function call.

Parameters:

aliases – An iterable of unique column names that do not collide with column names after join with the main table.

Raises:

ValueError – Raises error when the aliases are not unique after being canonicalized.

Language: English