How to change one attribute in a table using T-SQL to allow nulls (not null --> null)? Alter table maybe?
-- replace NVARCHAR(42) with the actual type of your column ALTER TABLE your_table ALTER COLUMN your_column NVARCHAR(42) NULL
1.4m articles
1.4m replys
5 comments
57.0k users