+3 votes
in Class 12 by kratos

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

1 Answer

+5 votes
by kratos
 
Best answer

Syntax:
ALTER TABLE tablename MODIFY (columnname datatype (size), columnname datatype(size)..);

...