alter table modify column in oracle database
We can change the column datatype in a table using alter table modify column in oracle ALTER TABLE table_name MODIFY column_name <action>; Action can be many things like(a) change the data type(b) Shorten or widen the data type(c) Change the default value(d) Change to allow null or not nulls(e) Column Visibility(d) Virtual Column ModificationLet’s start …
alter table modify column in oracle database Read More »