我们可以在hive数据文件中使用引号("或')作为分隔符吗?如果不是为什么? 如果我们可以参考我们可以用作hive数据分隔符的字符列表,那就太棒了。
答案 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 "\"";