postgresql创建表

前端之家收集整理的这篇文章主要介绍了postgresql创建表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

创建表之前现需要创建序列

drop table if exists 模式.seq_tablename;

create sequence 模式.seq_tablename

increment by 1

minvalue 1

no maxvalue

start with 1

cache 1;



然后才可以创建表

原文链接:https://www.f2er.com/postgresql/193373.html

猜你在找的Postgre SQL相关文章