读书人

postgresql的从增长id(获取最后插入id)

发布时间: 2013-04-02 12:35:26 作者: rapoo

postgresql的自增长id(获取最后插入id)

FAQ: Using Sequences in PostgreSQL

Many of the questions asked in?#postgresql?revolve around using sequences in PostgreSQL. To avoid answering the same questions again and again, I thought it would be worthwhile to summarize the basic steps involving in using sequences in PostgreSQL.

What Is A Sequence?

A sequence is a special kind of database object designed for generating unique numeric identifiers. It is typically used to generate artificial primary keys. Sequences are similar, but not identical, to the?AUTO_INCREMENT?concept in MySQL.

How Do I Use A Sequence In A Table?

Sequences are most commonly used via the?serial?pseudotype. A?serial?is a special data type that encodes the following information:

读书人网 >操作系统

热点推荐