Tagged Questions
3
votes
1answer
4k views
SQL Server 2005: Nullable Foreign Key Constraint
I have a foreign key constraint between tables Sessions and Users. Specifically, Sessions.UID = Users.ID. Sometimes, I want Sessions.UID to be null. Can this be allowed? Any time I try to do this, I ...