0


熟悉 Hive 的基本操作

4、实验步骤

(一)创建一个内部表 stocks,字段分隔符为英文逗号,表结构下所示。
col_namedata_typeexchangestringsymbolstringymdstringprice_openfloatprice_highfloatprice_lowfloatprice_closefloatvolumeintprice_adj_closefloat
创建内部表stocks:

createtableifnotexists stocks
(`exchange` string,`symbol` string,`ymd` string,`price_open`float,`price_high`float,`price_low`float,`price_close`float,`volume`int,`price_adj_close`float)row format delimited fieldsterminatedby',';

在这里插入图片描述

查看表:

describe stocks;

在这里插入图片描述

(二)创建一个外部分区表 dividends(分区字段为 exchange 和 symbol),字段分隔符为英 文逗号,表结构如表下所示。
col_namedata_typeymdstringdividendfloatexchangestringsymbolstring
创建外部分区表 dividends:

create external tableifnotexists dividends
(`ymd` string,`dividend`

本文转载自: https://blog.csdn.net/whdehcy/article/details/135452963
版权归原作者 cwn_ 所有, 如有侵权,请联系我们删除。

“熟悉 Hive 的基本操作”的评论:

还没有评论