我有一张几乎有1T行的表。
create table bigtable (
K1 int, K2 date, -- PK columns
C1 ..., C8 ...., -- columns with various data types like float, date, varchar, ...
B1 bit, B2 bit, ......, B10 bit -- 10 or so bit columns
primary key (K1, K2)
)
我想使用columnstore来提高查询性能。以下哪个选项最适合选择查询?不要担心插入/更新。