I want to add a column constraint with a constraint_name
ALTER TABLE Appointments ALTER COLUMN Hidden SET DEFAULT cast(0 as boolean)
This is working. Here no constraint name given. But, I have to add a column constraint name here. Any help would be appreciated.