Hive:在数据文件中使用引号字符作为分隔符

时间:2017-05-20 03:00:04

标签: hive hql bigdata

我们可以在hive数据文件中使用引号("或')作为分隔符吗?如果不是为什么? 如果我们可以参考我们可以用作hive数据分隔符的字符列表,那就太棒了。

1 个答案:

答案 0 :(得分:0)

使用小数表示法时,可以使用整个基本ascii范围(十进制0-127) - 测试
避免使用\n\r

对于"',可以直接进行 -

create table mytable (i int,j int) row format delimited fields terminated by '"';
create table mytable (i int,j int) row format delimited fields terminated by "'";

create table mytable (i int,j int) row format delimited fields terminated by '\'';
create table mytable (i int,j int) row format delimited fields terminated by "\"";