Google News
logo
PostgreSQL - Interview Questions
What do you understand by a sequence in PostgreSQL?
In PostgreSQL, a sequence is a special form of data created to generate multiple numeric identifiers in the database. It creates unique identifiers between multiple rows inside a table. It is mainly used to create sequences and artificial primary keys similar to Auto_Increment in MySQL.
Advertisement