当前位置:   article > 正文

hive创建表时使用的分隔符的三种方式_hive 建表分隔符

hive 建表分隔符

hive创建表时使用的分隔符的三种方式

单字符:

新建这样的文件:

cui,18,95
chen,17,90
shen,17,95
  • 1
  • 2
  • 3

使用单字符分割的方式建立一个测试表:

create external table test01
(
    name string,
    age  string,
    shen string
)
row format delimited
fields terminated by ','
location '/hivedatatest/student';

select * from test01;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

可以看出已经分割出来了:

请添加图片描述

如果将文件修改成这样:

cui,18,95
chen,17,90
shen,17,95

这个时候单字符分割就不管用了。

多字符分隔符:

使用org.apache.hadoop.hive.contrib.serde2.MultiDelimitSerDe,定义field.delim=","就可以实现

create external table test02
(
     name string,
    age  string,
    shen string
)
row format serde
'org.apache.hadoop.hive.contrib.serde2.MultiDelimitSerDe'
with serdeproperties ("field.delim"=",,")
location '/hivedatatest/student';
select * from test02;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

如果再改变一下:

cui,18,95
chen,17,90
shen,17,95

这样上述方法就无法实现分割,虽然工作中很少遇到这种情况:

create external table test03
(
    name string,
    age  string,
    shen string
)
ROW FORMAT SERDE 'org.apache.hadoop.hive.contrib.serde2.RegexSerDe'
WITH SERDEPROPERTIES ("input.regex" = "([^ ,]+),+([^ ,]+),,([^ ,]+)")
location '/hivedatatest/student';


select * from test03;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

这样就可以实现请添加图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/389873
推荐阅读
相关标签
  

闽ICP备14008679号