我目前有两个选择命令如下。我想做的是将结果添加到SQL查询中,而不是代码中的变量。
select sum(hours) from resource; select sum(hours) from projects-time;
是否可以将两者都放在同一SQL中并输出两个结果的总和?
是的。有可能的:D
: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上有所不同。
projects-time