我想查询一张名为'FooBar'的客户有一百万条记录的表,这些客户的记录日期为7-24-2016。该表中有10天的数据。
select *
from table
where customer = 'FooBar'
and insert_date between to_date('2016-07-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and to_date('2016-07-24 23:59:59', 'YYYY-MM-DD HH24:MI:SS');
上面的查询问题是它需要一段时间才能运行。我希望它跑得更快。
该表分为24小时。我可以将查询集中在表分区上吗?这会使查询运行得更快吗?
select *
from partition-7-24-2016
where customer = 'FooBar';
答案 0 :(得分:14)
正确的语法是select [columns] from [table] partition ([partition])
。所以,在这个用例中,你会有这样的东西:
SELECT *
FROM mytable PARTITION (partition_7_24_2016)
WHERE customer = 'FooBar';
答案 1 :(得分:2)
你可以这样做:
select * from table PARTITION FOR (date '2016-07-24') where customer = 'FooBar'
and insert_date between to_date('2016-07-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and to_date('2016-07-24 23:59:59', 'YYYY-MM-DD HH24:MI:SS');
这只会查找日期所在的分区中的行 - {1}}。
您需要确保在括号中提供分区值。 此外,如果你创建了一个索引 - 确保它是本地的,否则你不会看到比从表本身中选择更多的改进。