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 …
1
vote
Constraint for only one record marked as default.
Here's a modification of Damien_The_Unbeliever's solution that allows one default per FormID.
CREATE VIEW form_defaults
AS
SELECT FormID
FROM whatever
WHERE isDefault = 1
GO
CREATE …
