1. <small id='WKgE2'></small><noframes id='WKgE2'>

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

        如何在 SQL 中使用 NOT EXISTS 和 COMPOSITE KEYS 从 POJ

        时间:2023-09-30
          <bdo id='90ctp'></bdo><ul id='90ctp'></ul>

          <small id='90ctp'></small><noframes id='90ctp'>

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

                <tbody id='90ctp'></tbody>
                • <legend id='90ctp'><style id='90ctp'><dir id='90ctp'><q id='90ctp'></q></dir></style></legend>
                  本文介绍了如何在 SQL 中使用 NOT EXISTS 和 COMPOSITE KEYS 从 POJO 插入数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 DB2 DBMS.

                  I am using DB2 DBMS.

                  场景 1:

                  myTable 有一个复合键 (key1, key2),其中 key1 和 key2 都是 yourTable 的外键.

                  myTable has a composite key (key1, key2) where both key1 and key2 are foreign keys from yourTable.

                  我想将 yourTable 中的新数据插入 myTable,但前提是 myTable 中不存在 key1、key2 组合.

                  I want to insert new data from yourTable into myTable, but only if the key1, key2 combination does not already exist in myTable.

                  insert into myTable(key1, key2, someData)
                  values(x, y, z)
                  where NOT EXISTS (want to check if composite key is not already present)
                  

                  场景 2:

                  我将数据从 yourTable 放入一个带有 data1、data2 和 data 属性的 java 对象中.

                  I put data into a java object from yourTable with properties data1, data2, and data.

                  我想插入上面的数据与场景1中的检查一样.data1 + data2 不应已存在于 myTable 中.

                  I want to insert the above data with the check as in Scenario1. data1 + data2 should not already be present in myTable.

                  我如何实现这一目标?我认为我们不能在插入语句中使用 SELECT 语句.

                  How do I achieve this? I don't think we can use a SELECT statement inside the insert statement.

                  insert into myTable(key1, key2, data)
                  values(data1, data2, data)
                  where (data1 + data2 are already not present in myTable)
                  

                  我怎样才能做到这一点?

                  How can I achieve this?

                  推荐答案

                  insert into mytable(...)
                  select ...
                  from yourtable y
                  left join mytable m
                  on y.key1 = m.key1 and y.key2 = m.key2
                  where m.key is null
                  

                  insert into mytable(...)
                  select ...
                  from yourtable y
                  where not exists (select 1 from mytable m where y.key1 = m.key1 and y.key2 = m.key2)
                  

                  对于您的第二种情况,它看起来类似于上面的查询

                  for your 2nd scenario, it'd look similar to the above query

                  insert into mytable(...)
                  select ...
                  where not exists (select 1 from mytable m where javakey1 = m.key1 and javakey2 = m.key2)
                  

                  这篇关于如何在 SQL 中使用 NOT EXISTS 和 COMPOSITE KEYS 从 POJO 插入数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何检查用户的 DB2 SYSADM 或 SYSCTRL 授权 下一篇:发生 DB2 连接授权失败原因:Java 中不支持安全机制

                  相关文章

                  最新文章

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

                  1. <tfoot id='O0AhV'></tfoot>

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

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

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