Click here to Skip to main content
15,884,425 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi..
Am new to postgresql. I need to know the difference clear between serial,sequence and OID with simple example. It seems all are same to me,need help
Posted

1 solution

These items are used for automatically generating ID numbers.
In old style database (e.g. Oracle), you define the ID column as a number, create a sequence, and a trigger which links the ID column of the table with the sequence such that the column gets the next value from the sequence when a new row is inserted.
With Postgres, you define the ID column as a "serial", and Postgres magically creates the sequence and the trigger for you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900