Vertica中是否存在“Force Index”等价物?

时间:2010-02-10 00:01:16

标签: mysql vertica

Vertica DB中是否存在来自MySQL等效的“强制索引”?

1 个答案:

答案 0 :(得分:2)

您可以直接从投影而不是表格中进行选择。例如,而不是

select col from foo;

这样做:

select col from foo_p1;  -- where table_p1 is a projection of table foo`