gpt4 book ai didi

oracle - Oracle 中 ORDER BY 的 ORA-00904

转载 作者:行者123 更新时间:2023-12-04 10:02:40 28 4
gpt4 key购买 nike

我不明白这个查询出了什么问题:

    select last_name, first_name a from employees
order by "a";

输出是:
ORA-00904: "a": invalid identifier

但是,此查询工作并按 first_name 按升序对结果进行排序:
    select last_name, first_name a from employees
order by "A";

最佳答案

默认情况下,Oracle 不区分大小写。

所以,当你说

select first_name a from employees

Oracle 将其视为
SELECT FIRST_NAME A FROM EMPLOYEES

但是当您开始使用“引号”时...
order by "a"

Oracle 将其视为
ORDER BY "a"

<> A

如果您确保引用的对象也始终大写,这不是问题,这就是为什么您的“A”有效而“a”无效的原因。

我的建议 - 只需完全删除对象名称上的引号。
SELECT LAST_NAME,
FIRST_NAME A
FROM EMPLOYEES
ORDER BY A;

enter image description here

关于oracle - Oracle 中 ORDER BY 的 ORA-00904,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61752407/

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