I have two tables:
create table Number( num number(5));
create table Entry(id number(3), name varchar(50));
How can I increment the num field of Number table in Oracle whenever I insert something in the Entry table?
|
I have two tables:
How can I increment the num field of Number table in Oracle whenever I insert something in the Entry table? |
||||
|
|
You should use a This is what you should do instead:
|
|||||
|
|
Do you want number.num to continually represent the number of rows iin the Entry table? If so you could just define it as a view:
|
|||
|
(You don't need a trigger). A sequence returns a unique and increasing number value but Oracle doesn't guarantuee that it is gapless. When sometimes transactions are rollbacked the values of column id will contain gaps. |
|||
|
|