hive常见错误:cannot insert into target table because column number/type are different ‘table_name‘

cannot insert into target table because column number/type are different ‘table_name’

由于字段数量或者字段类型与源表 table_name 不同不能插入到目标表

table insclause-0 has 78 columns,but quary has 79 columns

目标表有78列数据,但是插入的查询有79列

从字面意思很好理解,就是我们使用查询插入的时候,查询的字段数比目标表的字段数要多

举例:
一张表target只有a,b,c三个字段,却使用四个字段来插入

`insert into target 
  select       a
              ,b
              ,c 
              ,d
            from text_table

这里d就是多出来的的字段,解决方案,直接查找到多出的字段将其处理掉

你可能感兴趣的:(笔记,hive,大数据,hql)