sql - Modify table: How to change 'Allow Nulls' attribute from not null to allow null -
how change 1 attribute in table using t-sql allow nulls (not null --> null)? alter table maybe?
-- replace nvarchar(42) actual type of column alter table your_table alter column your_column nvarchar(42) null
Comments
Post a Comment