Answers for "change data type of column in oracle table"

SQL
5

alter table oracle

ALTER TABLE tablename MODIFY columnname varchar2(100)
Posted by: Guest on February-13-2020
1

PL SQL MODIFY COLUMN NME

ALTER TABLE table_name
  RENAME COLUMN old_name TO new_name;
Posted by: Guest on March-12-2020

Code answers related to "change data type of column in oracle table"

Code answers related to "SQL"

Browse Popular Code Answers by Language