Alter nvarchar Size for a Column
TABLE
is the table of your database, and COLUMN
is a column on the table.
ALTER TABLE Customer ALTER COLUMN Address nvarchar(100);
ms_sql_server:alter_nvarchar_size_for_a_column
TABLE
is the table of your database, and COLUMN
is a column on the table.
ALTER TABLE Customer ALTER COLUMN Address nvarchar(100);