# 導入 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;