Answers for "how to increase a size of a field in sql"

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
0

how to increase size of column in sql

// for oracle verison 10 or before
ALTER TABLE table_name 
ALTER COLUMN column_name new_data_type(size);
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on June-13-2021

Code answers related to "how to increase a size of a field in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language