Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Vertica DB には、MySQL と同等の「Force Index」がありますか?
テーブルの代わりにプロジェクションから直接選択できます。たとえば、代わりに
select col from foo;
これを行う:
select col from foo_p1; -- where table_p1 is a projection of table foo`