0
only change data type?
is it possible to change the data type of an existing created table using ALTER TABLE ?
1 Resposta
0
You can change the data type of a column.
ALTER TABLE table_name
MODIFY column_name new_type;
is it possible to change the data type of an existing created table using ALTER TABLE ?