pyspark使用withColumn如何指定字段的类型
时间: 2024-04-29 12:21:24 浏览: 160
SQL 判断字段类型语句
使用withColumn时,可以使用cast函数来指定字段的类型。例如,如果要将一个名为"age"的字段转换为integer类型,可以使用下面的语句:
```
from pyspark.sql.functions import col
df = df.withColumn("age", col("age").cast("integer"))
```
其中,"age"为目标字段名,col("age")表示选择原始字段,cast("integer")指定了要转换的类型。
阅读全文