1. <tfoot id='FY17H'></tfoot>
        <bdo id='FY17H'></bdo><ul id='FY17H'></ul>
      1. <legend id='FY17H'><style id='FY17H'><dir id='FY17H'><q id='FY17H'></q></dir></style></legend>

      2. <small id='FY17H'></small><noframes id='FY17H'>

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

        如何在同一个查询中添加两个选择命令的结果

        How to add results of two select commands in same query(如何在同一个查询中添加两个选择命令的结果)

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

                <tfoot id='TJqWl'></tfoot>

                • <bdo id='TJqWl'></bdo><ul id='TJqWl'></ul>
                • <small id='TJqWl'></small><noframes id='TJqWl'>

                  本文介绍了如何在同一个查询中添加两个选择命令的结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我目前有两个选择命令,如下所示.我想要做的是将结果添加到 SQL 查询中,而不是代码中的变量.

                  I currently have two select commands as per below. What I would like to do is to add the results together in the SQL query rather than the variables in code.

                  select sum(hours) from resource;
                  select sum(hours) from projects-time;
                  

                  是否可以在同一个 SQL 中同时输出两个结果的总和?

                  Is it possible to have both in the same SQL and output a sum of both results?

                  推荐答案

                  是的.可能 :D

                  SELECT  SUM(totalHours) totalHours
                  FROM
                          ( 
                              select sum(hours) totalHours from resource
                              UNION ALL
                              select sum(hours) totalHours from projects-time
                          ) s
                  

                  作为旁注,必须对表名 projects-time 进行分隔以避免语法错误.分隔符因您使用的 RDBMS 而异.

                  As a sidenote, the tablename projects-time must be delimited to avoid syntax error. Delimiter symbols vary on RDBMS you are using.

                  这篇关于如何在同一个查询中添加两个选择命令的结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32)(超出最大存储过程、函数、触发器或视图嵌套级别(限制 32))
                  How to View Oracle Stored Procedure using SQLPlus?(如何使用 SQLPlus 查看 Oracle 存储过程?)
                  How to debug stored procedure in VS 2015?(如何在 VS 2015 中调试存储过程?)
                  Set the variable result, from query(设置变量结果,来自查询)
                  What is dynamic SQL?(什么是动态 SQL?)
                  Mysql - How to quit/exit from stored procedure(Mysql - 如何退出/退出存储过程)
                    <tbody id='B9Uqd'></tbody>
                  <legend id='B9Uqd'><style id='B9Uqd'><dir id='B9Uqd'><q id='B9Uqd'></q></dir></style></legend>

                    • <bdo id='B9Uqd'></bdo><ul id='B9Uqd'></ul>

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

                          <small id='B9Uqd'></small><noframes id='B9Uqd'>