English 中文(简体)
避免在甲骨文中发生与科尔有关的小问题
原标题:Avoiding Correlated Subquery in Oracle

在 Oracle 9.2.0.8 中,我需要返回一个记录集,其中特定字段(LAB_SEQ)最多为另一个字段(WO_NUM) (VARCHAR数列0001,0002等) 每个字段(WO_NUM) 。要选择最大值,我正尝试按降序排列并选择第一行。在 StackOvertroll 上我能找到的所有信息都表明,唯一的方法就是使用相关的子查询。 然后我在外部查询条款中使用这个最大值来获取每个 WO_NUM 想要的行 :

SELECT lt.WO_NUM, lt.EMP_NUM, lt.LAB_END_DATE, lt.LAB_END_TIME
FROM LAB_TIM lt WHERE lt.LAB_SEQ = (
   SELECT LAB_SEQ FROM (
      SELECT lab.LAB_SEQ FROM LAB_TIM lab WHERE lab.CCN= 1  AND MAS_LOC= 1 
          AND lt.WO_NUM = lab.WO_NUM ORDER BY ROWNUM DESC
   ) WHERE ROWNUM=1
)

但是, 这返回了 lt. WO_ NUM 错误的无效标识符 。 研究表明, ORACL 8 只允许相关的子解密深度为一层, 并建议重写以避免子解密- 有关选择最大值的讨论显示无法完成 。 任何帮助执行此语句的帮助都会非常感激 。

问题回答

你相关的子密室需要 类似的东西

SELECT lt.WO_NUM, lt.EMP_NUM, lt.LAB_END_DATE, lt.LAB_END_TIME
FROM LAB_TIM lt WHERE lt.LAB_SEQ = (
   SELECT max(lab.LAB_SEQ)
     FROM LAB_TIM lab 
    WHERE lab.CCN= 1  AND MAS_LOC= 1 
      AND lt.WO_NUM = lab.WO_NUM 
  )

由于您在 Oracle 9.2 上, 使用相关子查询可能更有效率。 我不清楚您当前查询中的上游 < code> lab. CCN= 1 和 MAS_ LOC= 1 和 MAS_ LOC= 1 / code> 正在做什么工作, 因此我不太确定如何将其翻译成解析函数法。 < code> LAB_ SE/ code > 和 < code> > 的组合是否在 < code> LAB_ TIM 中并不独一无二? 您是否需要在 < code > CCN < / code > 和 < code> 上添加上游的上游内容, 以便为每个 < code> 获得单单单行的解析函数法。 您是否在使用这些前提来减少您输出中的行数? 基本方法将类似 。

SELECT *
  FROM (SELECT lt.WO_NUM, 
               lt.EMP_NUM, 
               lt.LAB_END_DATE, 
               lt.LAB_END_TIME,
               rank() over (partition by wo_num
                                order by lab_seq desc) rnk
          FROM LAB_TIM lt)
   WHERE rnk = 1

但是,我不清楚在分析函数中,是否需要将 CCN MAS_LOC 添加到 ORDER BY 条款中,还是需要将其添加到 WHERE 条款中。

这是相关子查询更好的例子之一, 特别是如果表格上有索引的话。 但是, 应该可以将相关子查询重写为合并 。

我认为以下是等效的,没有相关的子查询:

SELECT lt.WO_NUM, lt.EMP_NUM, lt.LAB_END_DATE, lt.LAB_END_TIME
FROM (select *, rownum as r
      from LAB_TIM lt
     ) lt join
     (select wo_num, max(r) as maxrownum
      from (select LAB_SEQ, wo_num, rownum as r
            from LAB_TIM lt
            where lab.CCN =  1  AND MAS_LOC =  1 
           ) 
     ) ltsum
     on lt.wo_num = ltsum.wo_num and
        lt.r = ltsum.maxrownum

我有点不确定甲骨文如何使用 诸如《命令》之类的手柄





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签