我有一个这样的spark df专栏:
["100075010", "100075010", "100075010"]
是StringType。我想把这个列的数据类型转换为数组类型。
x0fgdtte1#
from_json
df = df.withColumn('col', F.from_json('col', 'array<string>'))
+--------------------+ | col| +--------------------+ |[100075010, 10007...| +--------------------+
1条答案
按热度按时间x0fgdtte1#
from_json