美文网首页postgresql
postgresql 表分区

postgresql 表分区

作者: 顶尖少爷 | 来源:发表于2022-10-04 18:51 被阅读0次

    postsql 10 以上

     
    
    -- 范围分区
    create  table "tab_medaid"(
        "id" varchar NOT NULL,
        "create_time" date
    )partition by range (create_time);
    
    
    Create  table tab_medaid_01 PARTITION OF  tab_medaid for values  from ('2022_10_08') to ('2022_10_09')
    
    
    -- 列分区
    
    create table fenbiao(
    id int,
    year varchar
    ) partition by list(year);
    
    create table fenbiao_2022 partition of fenbiao for values in ('2022');
    create table fenbiao_2023 partition of fenbiao for values in ('2023');
    

    相关文章

      网友评论

        本文标题:postgresql 表分区

        本文链接:https://www.haomeiwen.com/subject/etxuartx.html