# 导入
load data local inpath '/root/mr/The_Man_of_Property.txt' insert into table article;

# 提示
FAILED: ParseException line 1:58 extraneous input 'insert' expecting INTO near '<EOF>'

# 查找半天没发现哪里有问题,怎么试都没用,把表重新建还是一样的问题。
# 于是把 insert 改为 overwrite 就可以了。

load data local inpath '/root/mr/The_Man_of_Property.txt' overwrite into table article;

  

相关文章:

  • 2021-08-14
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
猜你喜欢
  • 2022-12-23
  • 2021-07-11
  • 2021-04-17
  • 2021-11-24
  • 2022-12-23
  • 2021-07-09
  • 2022-12-23
相关资源
相似解决方案