Aggiungi DEFAULT alla colonna esistente


Risposte:


16
ALTER TABLE yourTable ADD  CONSTRAINT constraintName  
   DEFAULT ('XYZ') FOR [YourColumn]

Per modificare il valore predefinito, eliminare il vincolo e aggiungerlo nuovamente con il nuovo valore:

ALTER TABLE yourTable
DROP CONSTRAINT constraintName

ALTER TABLE yourTable ADD  CONSTRAINT constraintName  
   DEFAULT ('ABC') FOR [YourColumn]

Puoi farlo anche nel designer.
SqlSandwiches,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.