赞
踩
源文件:
- ..
- 10000 a
- 10000 b
- 10000 c
- 20000 c
- 20000 d
- -- 创建一个Num表, 并指定以两个空格为分隔符
- create external table num(
- num string,
- type string
- )row format delimited fields terminated by ' ';
-
- select * from num;
查询结果:
- drop table num
- create table test(
- num string,
- type string
- )row format SERDE 'org.apache.hadoop.hive.serde2.RegexSerDe'
- with serdeproperties ('input.regex' = '([^ ]*) ([^ ]*)');
分别用两个正则匹配两列,中间空两个空格。
可以查出
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。