Good day, just want to ask, is it possible to alter a column table and make the default value to empty string.
I tried using this query,
Alter Table Employee Alter Column sJobTitle Varchar(200) DEFAULT ''
Unfortunately, it doesn’t work..
Please let me know, if ‘m doing it correct..
Thanks,
Link
You need to add a constraint.
Referring to SQL SERVER – Create Default Constraint Over Table Column