How to change the type of a column in SQL. For example the current type is char(2) I would like to make it char(20)?
ALTER TABLE test
ALTER COLUMN name char(20)
How to change the type of a column in SQL. For example the current type is char(2) I would like to make it char(20)?
ALTER TABLE test
ALTER COLUMN name char(20)