Reputation: 23
what is the ALTER Statement to change datatype of a column form NUMBER(4) to NUMBER in oracle
Upvotes: 0
Views: 57
Reputation: 1319
Try this SQL statement:
alter table yourtable modify yourcolumn number;
Upvotes: 3