Auto increment a column or primary key in Oracle
Let’s say you have a table called “FOO_LOG” with some columns. One of them is a primary key called LOGID. You want to automatically insert and increment the LOGID primary column. Assuming you have the FOO_LOG table created, you have to execute the following 2 steps STEP 1: Create …