2
votes
How do I create a table constraint to prevent duplicate values across two columns?
If you're using MSSQL (I think that's what your syntax looks like), Create a view including only the rows with IsActive = 1, then put a unique index on EntityIdNmb in the view.
In PostgreSQ …
