I want to create new column say (ID) with auto generated sequence number with auto increment by 10.
how can I achieve this in oracle database 11g ?
Question
albertExplorer
How to create a column with AUTO_INCREMENT in Oracle?
Share
You can create a sequence then call a before each row trigger on this table for ID value.