hi
i am using following query to set default value for the column
ALTER TABLE [Table] ADD CONSTRAINT [DF_Column Name] DEFAULT N'ABC' FOR [Column Name]
and the drop default query is
ALTER TABLE [Table] DROP CONSTRAINT [Column Name]
if the use change the column name then the drop default query will return error right.
how to handle this.