标签: apache-spark-sql hivecontext
我想通过覆盖另一个表中的列来更新现有表中的列。
示例:表name中有列student,但还有另一个表employee,我想覆盖name的列student来自name表的employee列表格。我想使用HiveContext在Spark SQL中执行此操作。
name
student
employee
我们可以运行此命令:
insert overwrite table stud (name) select name from table employee
?