作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在配置单元中结合两个表的列创建一个表。
所以我想通过包括两个文件的列在hdfs中创建一个文件。
file1: a b c are the 3 columns
file2: x y z are the 3 columns
i want to create a file3: a b c x y z that has 6 columns.
最佳答案
我认为最简单的方法是将id
列添加到两个表中(您需要一些列来进行联接),然后在id
列上联接表:
CREATE TABLE joined AS
SELECT first.id, first.a, first.b, first.c, second.x, second.y, second.z
FROM first JOIN second ON (first.id = second.id)
关于join - 如何通过在hadoop中合并两个文件在hdfs中创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21044757/
我是一名优秀的程序员,十分优秀!