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

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -