How to change column data type, to VARCHAR2 in this example:
ALTER TABLE <table_name> MODIFY (<column_name> VARCHAR2(20));
Note that data may be lost in this operation.
How to change column data type, to VARCHAR2 in this example:
ALTER TABLE <table_name> MODIFY (<column_name> VARCHAR2(20));
Note that data may be lost in this operation.