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

php - How can I merge Nodes & Webform Submissions into instances of one general Content Type in Drupal 6? -

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

geospatial - MongoDB Bound Queries: How do I convert mile to radian? -