How to change one attribute in a table using T-SQL to allow nulls (not null --> null)? Alter table maybe?
ALTER TABLE is right:
ALTER TABLE MyCustomers ALTER COLUMN CompanyName VARCHAR(20) NULL