我们可以在HIVE中为BIGINT列提供空值

时间:2016-09-21 11:50:22

标签: hive bigdata

我有一个问题,可能是一个基本问题。我想为数据类型为BIGINT的列赋予null值。那可能吗?

2 个答案:

答案 0 :(得分:1)

是的,可以轻松检查:

  1. hive> create table test_null_bigint(col bigint);
  2. insert into table test_null_bigint values(null);
  3. hive> select * from test_null_bigint;
  4. <强> NULL

    所花费的时间:21.556秒,提取:1行

答案 1 :(得分:0)

根据Apache Hive documentation,您应该能够将值保留为空。:

  

缺少的值由特殊值NULL表示。

你有没有尝试过任何东西?你遇到了什么问题吗?