How do I alter the “default binding” of a column?
This works:
ALTER TABLE [t].[t150806].[tblTest]
ADD CONSTRAINT test_constraint DEFAULT '10' FOR test
but since I’ve set the “default bind” earlier, I wish to continue in this fashion. So how do I set the “default binding” instead`?
Thanks,
Barry
You cannot alter a default constraint – you need to drop the old one:
and then add your new one: