Group by alias (Oracle)(按别名分组 (Oracle))
问题描述
如何使用别名对查询进行分组",例如:
How to 'group by' a query using an alias, for example:
select count(*), (select * from....) as alias_column
from table
group by alias_column
我收到alias_column":INVALID_IDENTIFIER 错误消息.为什么?如何对该查询进行分组?
I get 'alias_column' : INVALID_IDENTIFIER error message. Why? How to group this query?
推荐答案
select
count(count_col),
alias_column
from
(
select
count_col,
(select value from....) as alias_column
from
table
) as inline
group by
alias_column
如果您在 GROUP BY 子句中重复相应的表达式,则分组通常有效.仅提及别名是不可能的,因为 SELECT 步骤是执行查询的最后一步,分组发生得更早,当别名尚未定义时.
Grouping normally works if you repeat the respective expression in the GROUP BY clause. Just mentioning an alias is not possible, because the SELECT step is the last step to happen the execution of a query, grouping happens earlier, when alias names are not yet defined.
要对子查询的结果进行 GROUP BY,您将不得不绕道而行并使用嵌套查询,如上所述.
To GROUP BY the result of a sub-query, you will have to take a little detour and use an nested query, as indicated above.
这篇关于按别名分组 (Oracle)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:按别名分组 (Oracle)
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01