我在 S3 中有一个文件,其中包含以下数据:
name,age,gender
jill,30,f
jack,32,m
create external table spectrum.customers (
"name" varchar(50),
"age" int,
"gender" varchar(1))
row format delimited
fields terminated by ','
lines terminated by \n'
stored as textfile
location 's3://...';
查询数据时,我得到以下结果:
select * from spectrum.customers;
name,age,g
jill,30,f
jack,32,m
作为外部表定义的一部分,是否有一种优雅的方法可以跳过标题行,类似于tblproperties ("skip.header.line.count"="1")
Hive 中的选项?或者是我唯一的选择(至少现在)作为选择语句的一部分过滤掉标题行?