<tfoot id='iqlna'></tfoot>

    <small id='iqlna'></small><noframes id='iqlna'>

    <legend id='iqlna'><style id='iqlna'><dir id='iqlna'><q id='iqlna'></q></dir></style></legend>

    <i id='iqlna'><tr id='iqlna'><dt id='iqlna'><q id='iqlna'><span id='iqlna'><b id='iqlna'><form id='iqlna'><ins id='iqlna'></ins><ul id='iqlna'></ul><sub id='iqlna'></sub></form><legend id='iqlna'></legend><bdo id='iqlna'><pre id='iqlna'><center id='iqlna'></center></pre></bdo></b><th id='iqlna'></th></span></q></dt></tr></i><div id='iqlna'><tfoot id='iqlna'></tfoot><dl id='iqlna'><fieldset id='iqlna'></fieldset></dl></div>

        <bdo id='iqlna'></bdo><ul id='iqlna'></ul>

      强制执行具有完整性约束的“子集"关系的最佳方法是什么

      What is the best way to enforce a #39;subset#39; relationship with integrity constraints(强制执行具有完整性约束的“子集关系的最佳方法是什么)

      <tfoot id='0vwCJ'></tfoot>

            • <bdo id='0vwCJ'></bdo><ul id='0vwCJ'></ul>

            • <legend id='0vwCJ'><style id='0vwCJ'><dir id='0vwCJ'><q id='0vwCJ'></q></dir></style></legend>

              <small id='0vwCJ'></small><noframes id='0vwCJ'>

                <i id='0vwCJ'><tr id='0vwCJ'><dt id='0vwCJ'><q id='0vwCJ'><span id='0vwCJ'><b id='0vwCJ'><form id='0vwCJ'><ins id='0vwCJ'></ins><ul id='0vwCJ'></ul><sub id='0vwCJ'></sub></form><legend id='0vwCJ'></legend><bdo id='0vwCJ'><pre id='0vwCJ'><center id='0vwCJ'></center></pre></bdo></b><th id='0vwCJ'></th></span></q></dt></tr></i><div id='0vwCJ'><tfoot id='0vwCJ'></tfoot><dl id='0vwCJ'><fieldset id='0vwCJ'></fieldset></dl></div>
                  <tbody id='0vwCJ'></tbody>
              1. 本文介绍了强制执行具有完整性约束的“子集"关系的最佳方法是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                例如,给定 3 个表:

                For example, given 3 tables:

                • 腹足类
                • 蜗牛
                • 蛞蝓

                并假设我们要强制执行

                1. 'gastropod' 中的每一行在 'snail' 或 'slug' 中都有一个对应的行(但不能同时存在)
                2. 'slug' 中的每一行在 'gastropod' 中都有一个对应的行
                3. 'snail' 中的每一行在'gastropod' 中都有一个对应的行

                设置架构以强制执行这些约束的最佳方法是什么?

                what is the best way to set up my schema to enforce these constraints?

                我已经为 postgres 提供了一个可能的答案,我对 postgres 和 Oracle 的解决方案特别感兴趣,但也有兴趣查看其他 RDBMS 的解决方案

                I've provide one possible answer for postgres, and I am particularly interested in solutions for postgres and Oracle, but would also be interested to see solutions for other RDBMSs

                编辑
                作为参考,来自以下回答/评论的 SO 问题解决了类似的问题:

                EDIT
                For reference, SO questions from from answers/comments below addressing similar problems:

                • 维护关系数据库中的子类完整性
                • 数据库设计 - 文章、博文、照片、故事
                • 来自不同实体的相同数据在数据库中 - 最佳实践 - 电话号码示例

                推荐答案

                我自己的 postgres 解决方案(但我不知道它是否是最好的方法):

                My own solution for postgres (but I have no idea if it is the best way):

                枚举:

                create type gastropod_type as enum ('slug', 'snail');
                

                表和约束:

                create table gastropod(
                  gastropod_id serial unique,
                  gastropod_type gastropod_type,
                  slug_gastropod_id integer,
                  snail_gastropod_id integer,
                  average_length numeric,
                  primary key(gastropod_id, gastropod_type),
                  check( (case when slug_gastropod_id is null then 0 else 1 end)+
                         (case when snail_gastropod_id is null then 0 else 1 end)=1) );
                
                create table slug(
                  gastropod_id integer unique,
                  gastropod_type gastropod_type check (gastropod_type='slug'),
                  is_mantle_visible boolean,
                  primary key(gastropod_id, gastropod_type),
                  foreign key(gastropod_id, gastropod_type) 
                    references gastropod deferrable initially deferred );
                
                create table snail(
                  gastropod_id integer unique,
                  gastropod_type gastropod_type check (gastropod_type='snail'),
                  average_shell_volume numeric,
                  primary key(gastropod_id, gastropod_type),
                  foreign key(gastropod_id, gastropod_type)
                    references gastropod deferrable initially deferred );
                
                alter table gastropod 
                add foreign key(slug_gastropod_id, gastropod_type) 
                references slug deferrable initially deferred;
                
                alter table gastropod 
                add foreign key(snail_gastropod_id, gastropod_type) 
                references snail deferrable initially deferred;
                

                测试:

                insert into gastropod(gastropod_type, slug_gastropod_id, average_length)
                values ('slug', currval('gastropod_gastropod_id_seq'), 100);
                
                insert into slug(gastropod_id, gastropod_type, is_mantle_visible)
                values (currval('gastropod_gastropod_id_seq'), 'slug', true);
                
                select gastropod_id, gastropod_type, average_length, is_mantle_visible
                from gastropod left outer join slug using(gastropod_id, gastropod_type) 
                               left outer join snail using(gastropod_id, gastropod_type);
                
                 gastropod_id | gastropod_type | average_length | is_mantle_visible
                --------------+----------------+----------------+-------------------
                            1 | slug           |            100 | t                 
                (1 row)
                

                这篇关于强制执行具有完整性约束的“子集"关系的最佳方法是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                SQL query to group by day(按天分组的 SQL 查询)
                What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)

                <small id='CHTJO'></small><noframes id='CHTJO'>

                <legend id='CHTJO'><style id='CHTJO'><dir id='CHTJO'><q id='CHTJO'></q></dir></style></legend>
                  <bdo id='CHTJO'></bdo><ul id='CHTJO'></ul>
                  <i id='CHTJO'><tr id='CHTJO'><dt id='CHTJO'><q id='CHTJO'><span id='CHTJO'><b id='CHTJO'><form id='CHTJO'><ins id='CHTJO'></ins><ul id='CHTJO'></ul><sub id='CHTJO'></sub></form><legend id='CHTJO'></legend><bdo id='CHTJO'><pre id='CHTJO'><center id='CHTJO'></center></pre></bdo></b><th id='CHTJO'></th></span></q></dt></tr></i><div id='CHTJO'><tfoot id='CHTJO'></tfoot><dl id='CHTJO'><fieldset id='CHTJO'></fieldset></dl></div>
                  <tfoot id='CHTJO'></tfoot>
                    <tbody id='CHTJO'></tbody>