在MemSQL中可以使用"create table xxx as select ...“创建表吗?创建的表xxx是基于磁盘的(即集群COLUMNSTORE)?我无法做到这一点。
谢谢!
发布于 2016-08-24 02:16:17
您可以为包括索引的表指定选项,如下所示:
create table c (key using clustered columnstore (a)) as select a,b from t;有关更多信息,请参阅http://docs.memsql.com/docs/create-table#section-create-table-select
https://stackoverflow.com/questions/39107794
复制相似问题