gpt4 book ai didi

SQL - 在嵌套选择中使用值

转载 作者:行者123 更新时间:2023-12-04 23:08:11 24 4
gpt4 key购买 nike

希望标题有某种意义 - 我基本上想根据原始选择中的值进行嵌套选择,如下所示:

SELECT MAX(iteration) AS maxiteration,
(SELECT column
FROM table
WHERE id = 223652
AND iteration = maxiteration)
FROM table
WHERE id = 223652;

我收到 ORA-00904 无效标识符错误。

非常感谢有关如何返回此值的任何建议,谢谢!

最佳答案

看起来这应该用 where 子句重写:

select iteration,
col
from tbl
where id = 223652
and iteration = (select max(iteration) from tbl where id = 223652);

关于SQL - 在嵌套选择中使用值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6139449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com