SQL - Change Column Size
We hope that the examples below will help you if you want to change the size of a column in SQL.
{mobile_block=responsive_ad_728_90}
Changing the size of a column with a SQL query
The syntax for changing the size of a column with SQL query is:
ALTER TABLE [table_name] ALTER COLUMN [column_name] [data_type]
For example, if a database contains a table "Students" with column "Name" that is nvarchar(10) and you want to change it to nvarchar(100) the following query will do the job: