我从包含所有行的数据帧中创建一个临时的“国家”表:country_code_destination
为空:
df_country=df.where(df.country_code_destination.isNull()).registerTempTable("country")
然后,我想将此模板导出到一个csv文件中:
%%sql -q -o qry_country
SELECT * FROM country
%%local
qry_country.to_csv("country_code_null.csv", sep=';')
但是问题是在“ country_code_null.csv”文件中,我找不到“ country_code_destination”列。除“ country_code_destination”外,所有列均存在。
有什么想法可以解决这个问题吗?
谢谢