美文网首页
postgre 自增序列

postgre 自增序列

作者: 你说我对钱一往情深 | 来源:发表于2020-12-02 14:10 被阅读0次

    先建立一个序列

    create sequence id_seq start with 1 increment by 1 no minvalue no maxvalue cache 1;
    

    创建表的时候这样写:

        create table dws_customize_filter_test (
        id   int4 default nextval('id_seq'),
        create_time TIMESTAMP not null default CURRENT_TIMESTAMP,
        update_time  TIMESTAMP not null default CURRENT_TIMESTAMP ,
        status varchar DEFAULT 1,
        kpi varchar, 
        dimention varchar,
        table_name varchar,
        clc_mode varchar
        )
    

    相关文章

      网友评论

          本文标题:postgre 自增序列

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