Answers for "sql query to change the column size"

SQL
0

how to increase size of column in sql

ALTER TABLE table_name
MODIFY column_name
varchar(new_length);
Posted by: Guest on June-13-2021

Code answers related to "sql query to change the column size"

Code answers related to "SQL"

Browse Popular Code Answers by Language