snowflake.snowpark.DataFrame.withColumnRenamed¶
- DataFrame.withColumnRenamed(existing: Union[Column, str], new: str) DataFrame[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/dataframe.py#L6220-L6308)¶
Returns a DataFrame with the specified column
existingrenamed asnew.Example:
- Parameters:
existing – The old column instance or column name to be renamed.
new – The new column name.