hive 导入csv

1:元数据格式

hive 导入csv_第1张图片

2:创建表: 

TABLE `pj_inventoryzb` (
  id string,
  mxid string,
  spmc string,
  ggxh string,
  spsl string,
  dj decimal(31,18),
  je decimal(31,18),
  hsbz decimal(31,18),
  fphxz string,
  fpmxxh string
) row format serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde' with SERDEPROPERTIES ("separatorChar"=",","quotechar"="\"")
STORED AS TEXTFILE;

3:加载数据:

load data local inpath '/application/pj_inventoryzb.csv' overwrite into table pj_inventoryzb;

hive 导入csv_第2张图片

你可能感兴趣的:(大数据Hive)