Hive:从文本文件创建表。处理特殊字符

问题描述 投票:-1回答:1

我有txt格式的数据文件,我需要加载到一个hive tableData Sample

我创建了一个表来从该文件加载数据,然后使用LOAD命令插入数据,如下所示

    CREATE TABLE dev.table
    (Date string,
    c1 string,
    c2 string,
    c3 string,
    c4 string,
    c5 string,
    c6 string,
    c7 string,
    c8 string) 
    row format delimited fields terminated by '\t' stored as textfile;

    LOAD DATA LOCAL INPATH 'filepath.txt'  OVERWRITE INTO TABLE dev.table;

数据将插入表中,但每列中都会显示一个特殊字符。以下是样本数据

Sample output data

请帮助摆脱这个特殊的角色。

hive hdfs hql hiveql
1个回答
0
投票

请检查此查询:

select Date from dev.table limit 10

由于您选择的数据是在dev.table

© www.soinside.com 2019 - 2024. All rights reserved.