MS SQL Server跨表约束

我有三张桌子:

1)申请(AppId,姓名)
2)屏幕(ScreenId,名称)
3)关系(AppId,ScreenId)

现在我想对相关表应用一些限制:
可以将同一屏幕分配给多个应用程序,但不能有两个具有相同名称的屏幕分配给同一个应用程序.

我知道我可以将Screen.Name添加到关系表,然后在AppId和Screen.Name上创建PK,但我不想要这样的解决方案,因为Screen.Name可能会发生变化.

我有什么额外的选择来实现这样的限制?

解决方法

您可以根据Relation和Screen表创建一个 indexed view,并在那里应用唯一约束.
create view DRI_UniqueScreens
with SCHEMABINDING
as
    select r.AppId,s.Name
    from
       [Schema].Relation r
         inner join
       [Schema].Screen s
         on
            r.ScreenId = s.ScreenId
GO
CREATE UNIQUE CLUSTERED INDEX IX_DRI_UniqueScreens
    on DRI_UniqueScreens (AppId,Name)

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...