Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Modifica tabella:come modificare l'attributo "Consenti valori nulli" da non nullo per consentire null

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