Hive External table-CSV File- Header row

后端 未结 6 578
甜味超标
甜味超标 2020-12-24 08:06

Below is the hive table i have created:

CREATE EXTERNAL TABLE Activity (
  column1 type, 
column2 type ) ROW FORMAT DELIMITED FIELDS TERMINATED
6条回答
  •  [愿得一人]
    2020-12-24 08:43

    you can now skip the header count in hive 0.13.0.

    
    tblproperties ("skip.header.line.count"="1");
    

提交回复
热议问题