Answers for "mssql unique key accept nulls"

SQL
0

mssql unique key accept nulls

CREATE UNIQUE NONCLUSTERED INDEX idx_yourcolumn_notnull
ON YourTable(yourcolumn)
WHERE yourcolumn IS NOT NULL;
Posted by: Guest on December-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language