Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Marks a given column with specified collation.
For the corresponding Databricks SQL function, see collate expression.
Syntax
from pyspark.databricks.sql import functions as dbf
dbf.collate(col=<col>, collation=<collation>)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or str |
Target string column to work on. |
collation |
str |
Target collation name. |
Returns
pyspark.sql.Column: A new column of string type, where each value has the specified collation.