gpt4 book ai didi

apache-spark - 如何处理spark中数据框列名中的空格

转载 作者:行者123 更新时间:2023-12-04 22:56:35 27 4
gpt4 key购买 nike

我从列标题中有空格的 df 注册了一个 tmp 表。如何在通过 sqlContext 使用 sql 查询时提取列。
我尝试使用反勾号但它不起作用

df1 =  sqlContext.sql("""select Company, Sector, Industry, `Altman Z-score as Z_Score` from tmp1 """)

最佳答案

您只需将列名放在反引号中,而不是其别名:

无别名 :

df1 =  sqlContext.sql("""select Company, Sector, Industry, `Altman Z-score` as Z_Score from tmp1""")

使用别名 :
df1 =  sqlContext.sql("""select t1.Company, t1.Sector, t1.Industry, t1.`Altman Z-score` as Z_Score from tmp1 t1""")

关于apache-spark - 如何处理spark中数据框列名中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43108007/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com