sql >> Base de Datos >  >> RDS >> Sqlserver

Modificar tabla:cómo cambiar el atributo 'Permitir nulos' de no nulo a permitir nulo

-- replace NVARCHAR(42) with the actual type of your column
ALTER TABLE your_table
ALTER COLUMN your_column NVARCHAR(42) NULL