I realised that there is no concept of AUTO_INCREMENT on Oracle. How can I use SYS_GUID() to create 'auto increment'?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
There is no such thing as "auto_increment" or "identity" columns in Oracle. However, you can model it easily with a sequence and a trigger: Table definition:
Trigger definition:
|
|||||||||||
|
|
If you want to create an incrementing numeric key, you'll want to create a sequence.
You would then either use that sequence in your
Or you can define a trigger that automatically populates the primary key value using the sequence
If you are using Oracle 11.1 or later, you can simplify the trigger a bit
If you really want to use
|
|||
|
|
BEFORE INSERTtrigger on the table and pull values out of a sequence to create auto-increment – Hunter McMillen Jul 2 '12 at 15:15