Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Modificar tabela:como alterar o atributo 'Permitir nulos' de não nulo para permitir nulo

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