Wrong result for count(*) in hive table

后端 未结 3 1343
野的像风
野的像风 2021-01-02 08:35

I have created a table in HIVE

CREATE TABLE IF NOT EXISTS daily_firstseen_analysis (
    firstSeen         STRING,
    category          STRING,
    circle           


        
3条回答
  •  不知归路
    2021-01-02 08:55

    if you have an external table, remove all the files in HDFS, and insert into the table again then select count(*) will be incorrect.

提交回复
热议问题