I have a table in SQL Server which has a constraint like Not null. When I enter new entry if I am not filling anything, SQL Server pops error message preventing Null value.
But once I enter one record and later if I edit that record by just deleting the data in this column, SQL Server is accepting the empty string.
NOT NULLconstraint, then it is not allowed in the column. Perhaps the value is an empty string''rather thanNULL.