I want to set a unique constraint that allows nulls using SQL Server 2014 Express. I know this has been asked before but it was asked 5 years ago in this post.
How do I create a unique constraint that also allows nulls?
I am only starting to study SQL so I want to see if any other options have become available since 5 years ago.
I am consdiering using a Unique Filtered Index but i would like to avoid having to use this Index if possible.
Thank you.