【发布时间】:2021-07-31 14:14:05
【问题描述】:
我有一个按日期列名称datetime 分区的配置单元表
如果我做这样的查询
select *
from table
where datetime = "2021-05-01"
and id in (1,2)
如果有额外的and id in (1,2) 条件,hive 会进行全表搜索吗?
可以通过explainresult 判断吗?
【问题讨论】:
标签: hadoop hive hiveql explain hive-partitions