1.

How do you modify the column name and width for existing table?

Answer»

Syntax:
Alter table tablename modify (columnname datatype (size), columnname datatype(size)..);

Example:
Alter table student modify ( studentname varchar2(50) );



Discussion

No Comment Found

Related InterviewSolutions