postgres新建自增长的table表单“record ”

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sinat_36146776/article/details/86312593

create table record (
  id serial,
    type VARCHAR,
    name VARCHAR,
    params VARCHAR,
  constraint pk_record_a_id primary key( id)
);

猜你喜欢

转载自blog.csdn.net/sinat_36146776/article/details/86312593
今日推荐