作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在Databricks中重命名列?
以下内容不起作用:
ALTER TABLE mySchema.myTable change COLUMN old_name new_name int
ALTER TABLE CHANGE COLUMN is not supported for changing column 'old_name' with type 'IntegerType >(nullable = true)' to 'new_name' with type 'IntegerType (nullable = true)';
最佳答案
您不能在Databricks中重命名或更改列数据类型,只能添加新列,对其重新排序或添加列注释。为此,您必须使用overwriteSchema
选项重写该表。
请从this documentation中获取以下示例:
spark.read.table(...)
.withColumnRenamed("date", "date_created")
.write
.mode("overwrite")
.option("overwriteSchema", "true")
.table(...)
关于databricks - 如何在Databricks中重命名列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59491350/
我是一名优秀的程序员,十分优秀!