• <bdo id='2S4bx'></bdo><ul id='2S4bx'></ul>

    <tfoot id='2S4bx'></tfoot>
      1. <legend id='2S4bx'><style id='2S4bx'><dir id='2S4bx'><q id='2S4bx'></q></dir></style></legend>
      2. <small id='2S4bx'></small><noframes id='2S4bx'>

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

        将主键添加到 sql 视图

        时间:2024-04-15
        1. <small id='hvMCj'></small><noframes id='hvMCj'>

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

                <tbody id='hvMCj'></tbody>
              <legend id='hvMCj'><style id='hvMCj'><dir id='hvMCj'><q id='hvMCj'></q></dir></style></legend>

                  <bdo id='hvMCj'></bdo><ul id='hvMCj'></ul>
                • 本文介绍了将主键添加到 sql 视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  阅读

                  怎么做没有主键的表或视图的休眠映射

                  我想知道如何向我的视图添加主键,因为它基本上只是一个存储查询......?

                  I am wondering how to add a primary key to my view as it is basically just a stored query...?

                  PS:甲骨文 10g

                  谢谢

                  推荐答案

                  我们可以向视图添加禁用主键约束.也就是说,如果对视图运行插入或更新,则约束不会触发.数据库希望通过对基础表的约束来维护完整性.因此,此约束仅用于文档目的.

                  We can add a disabled primary key constraint to a view. That is, the constraint does not fire if an insert or update is run against the view. The database expects integrity to be maintained through constraints on the underlying tables. So the constraint exists solely for the purposes of documentation.

                  SQL> create view emp_view as select * from emp
                    2  /
                  
                  
                  View created.
                  
                  SQL> alter view emp_view add constraint vemp_pk primary key (empno) disable
                    2  /
                  
                  View altered.
                  
                  SQL> 
                  

                  警告:我从未在 Hibernate 中尝试过这个,所以我不知道它是否适用于您的场景.但是,我确实知道专门针对视图层使用 Hibernate 的站点,所以我认为它确实如此.请尝试语法并反馈.

                  Caveat: I have never tried this with Hibernate, so I don't know whether it would work in your scenario. However, I do know sites which use Hibernate exclusively against a layer of views, so I presume it does. Please experiment with the syntax and report back.

                  这篇关于将主键添加到 sql 视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:我们可以将参数传递给 SQL 中的视图吗? 下一篇:我可以有一个外键引用 SQL Server 视图中的列吗?

                  相关文章

                  <tfoot id='wUJNP'></tfoot>

                        <bdo id='wUJNP'></bdo><ul id='wUJNP'></ul>
                    1. <legend id='wUJNP'><style id='wUJNP'><dir id='wUJNP'><q id='wUJNP'></q></dir></style></legend>

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

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