gpt4 book ai didi

hive - 在 HIVE 中删除一系列分区

转载 作者:行者123 更新时间:2023-12-03 15:26:53 25 4
gpt4 key购买 nike

我有一个按列日期分区的 Hive(版本 0.11.0)表,类型为字符串。我想知道 Hive 中是否存在一种方法可以删除一系列日期的分区(例如从“date1”到“date2”)。我尝试了以下(SQL 类型)查询,但它们在语法上似乎不正确:

ALTER TABLE myTable DROP IF EXISTS PARTITION
(date>='date1' and date<='date2');

ALTER TABLE myTable DROP IF EXISTS PARTITION
(date>='date1' && date<='date2');

ALTER TABLE myTable DROP IF EXISTS PARTITION
(date between 'date1' and 'date2');

最佳答案

我试过这个语法它有效。

ALTER TABLE mytable DROP PARTITION (dates>'2018-04-14',dates<'2018-04-16');

命令输出:
    Dropped the partition dates=2018-04-15/country_id=107
Dropped the partition dates=2018-04-15/country_id=110
Dropped the partition dates=2018-04-15/country_id=112
Dropped the partition dates=2018-04-15/country_id=14
Dropped the partition dates=2018-04-15/country_id=157
Dropped the partition dates=2018-04-15/country_id=159
Dropped the partition dates=2018-04-15/country_id=177
Dropped the partition dates=2018-04-15/country_id=208
Dropped the partition dates=2018-04-15/country_id=22
Dropped the partition dates=2018-04-15/country_id=233
Dropped the partition dates=2018-04-15/country_id=234
Dropped the partition dates=2018-04-15/country_id=76
Dropped the partition dates=2018-04-15/country_id=83
OK
Time taken: 0.706 seconds

我正在使用,Hive 1.2.1000.2.5.5.0-157

关于hive - 在 HIVE 中删除一系列分区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33171704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com