在创建表时,我使用的是idea客户端,报了如下错误
org.apache.hadoop.hive.ql.parse.ParseException:line 6:48 missing EOF at ‘/’ near ‘)’
原本sql如下:文章来源:https://www.toymoban.com/news/detail-720951.html
create table t_usa_covid19_p(
county string,
fips int,
cases int,
deaths int)
partitioned by (count_date string,state string) //根据count_data与state分区 同时根据两个字段分区,分区就是对应到hdfs上的目录,一个分区对应一个目录 一个子分区就对应到目录中的目录
row format delimited fields terminated by ',';
后来把sql中的注释去掉以后,或者把注释开头替换成 – 此异常便可以解决。文章来源地址https://www.toymoban.com/news/detail-720951.html
到了这里,关于Hive 建表客户端报错 missing EOF at “/“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!