我有一个从多个分区中选择的查询
select * from table partition (P1), table2, table3, table4
union all
select * from table partition (P2), table2, table3, table4
....
select * from table partition (P12), table2, table3, table4
表格在12个分区中有超过30,331,246个条目。我需要找到一种更快的方法来提取结果(现在需要大约35分钟)。如果我从表中选择而不是分区,则时间将超过135分钟,但不是查询的外观。
你能帮助我找到另一种方法吗?