• <bdo id='6urXF'></bdo><ul id='6urXF'></ul>
    1. <legend id='6urXF'><style id='6urXF'><dir id='6urXF'><q id='6urXF'></q></dir></style></legend>

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

      <small id='6urXF'></small><noframes id='6urXF'>

      <tfoot id='6urXF'></tfoot>

    2. 按别名分组 (Oracle)

      时间:2023-09-20
      <i id='3BZvP'><tr id='3BZvP'><dt id='3BZvP'><q id='3BZvP'><span id='3BZvP'><b id='3BZvP'><form id='3BZvP'><ins id='3BZvP'></ins><ul id='3BZvP'></ul><sub id='3BZvP'></sub></form><legend id='3BZvP'></legend><bdo id='3BZvP'><pre id='3BZvP'><center id='3BZvP'></center></pre></bdo></b><th id='3BZvP'></th></span></q></dt></tr></i><div id='3BZvP'><tfoot id='3BZvP'></tfoot><dl id='3BZvP'><fieldset id='3BZvP'></fieldset></dl></div>
          <tbody id='3BZvP'></tbody>
        1. <tfoot id='3BZvP'></tfoot>

              <small id='3BZvP'></small><noframes id='3BZvP'>

              <legend id='3BZvP'><style id='3BZvP'><dir id='3BZvP'><q id='3BZvP'></q></dir></style></legend>
                <bdo id='3BZvP'></bdo><ul id='3BZvP'></ul>
              • 本文介绍了按别名分组 (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 中如何判断一个值是否不是数字? 下一篇:Oracle 是否有等效于 SQL Server 的表变量?

                相关文章

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

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

                    <tfoot id='EFeBr'></tfoot>