I need to set my column property to NOT NULL, but I'm not able to set the property it produces the below error..
MY Query:
ALTER TABLE CartReceBenif
ALTER COLUMN RecipientId int NOT NULL;

ERROR
Msg 515, Level 16, State 2, Line 1 Cannot insert the value NULL into column 'RecipientId', table 'test.dbo.CartReceBenif'; column does not allow nulls. UPDATE fails. The statement has been terminated.
Can any one suggest what is the mistake..
NULLvalues in that column. Is that the case?