Answers for "how to update the length of the column in sql"

SQL
1

alter column length sql server

ALTER TABLE [table_name] ALTER COLUMN [column_name] varchar(150)
Posted by: Guest on September-20-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 update the length of the column in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language