如何使用SQLServer数据库按月创建表分区

如题所述

第1个回答  2018-10-05
create table xxx(id number,time date)
parttion by range(time)
(partion part1 values less than (to_date('2012-01-31','yyyy-mm-dd')) tablespace tb1,
partion part 2 vales less than(to_date('2012-01-31','yyyy-mm-dd')) tablespace tb2);本回答被网友采纳
相似回答