码迷,mamicode.com
首页 > 数据库 > 详细

postgreSQL 自动递增序号

时间:2019-01-05 00:12:30      阅读:426      评论:0      收藏:0      [点我收藏+]

标签:表格   数据   gre   inf   创建   varchar   pos   table   post   

创建表格

 CREATE TABLE test
 ( id serial,
 name varchar(16) not null
 );

 

技术分享图片

查询当前创建好的表格

技术分享图片

插入数据

BEGIN TRANSACTION;
INSERT INTO test(name)  VALUES(A0001);
commit;

 

再次查询表格,ID为1

技术分享图片

 

插入第二条数据,序号自动为2

BEGIN TRANSACTION;
INSERT INTO test(name) VALUES(A0002);
commit;

 

技术分享图片

 

重复第二步操作

技术分享图片

 未完待续…

postgreSQL 自动递增序号

标签:表格   数据   gre   inf   创建   varchar   pos   table   post   

原文地址:https://www.cnblogs.com/siyun/p/10223035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!