Drop table t1
Table dropped.
Create table t1
(c1 Int Default 0 Not Null,
c2 Int Default 0 Not Null)
Table created.
Alter table t1
Modify c2 as (c1 + 1)
ORA-54026: Real column cannot have an expressionMore Details: https://docs.oracle.com/error-help/db/ora-54026