The current existing table looks like this:
id number amount 1 123 30000.00 2 123 15000.00 3 321 45000.00 ... ...
Virtual Column:
alter table Table1 add allocated_amount integer GENERATED ALWAYS AS (amount) VIRTUAL;