首页 > 数据库技术 > 详细

postgreSqL的序列sequence

时间:2016-12-25 20:54:50      阅读:207      评论:0      收藏:0      [点我收藏+]

PostgreSQL uses sequences to generate values for serial columns and serial columns are generally what is used for "auto-incrementing" columns in PostgreSQL. Sequences have names and are, in general, independent of any particular table so you could have one sequence generating unique IDs for several different tables; the sequence name is what lastInsertId wants as its argument:

For example, PDO_PGSQL() requires you to specify the name of a sequence object for the name parameter.

The sequence object created by PostgreSQL is automatically named [table]_[column]_seq, So:

$id = $db->lastInsertId(‘tableName_columnName_seq‘);

reference: http://stackoverflow.com/questions/10492566/lastinsertid-does-not-work-in-postgresql

postgreSqL的序列sequence

原文:http://www.cnblogs.com/oxspirt/p/6220293.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!