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.

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

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

                  相关文档推荐

                  ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                  SQL query to group by day(按天分组的 SQL 查询)
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                    <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'>