博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sql合并两个select查询
阅读量:4980 次
发布时间:2019-06-12

本文共 588 字,大约阅读时间需要 1 分钟。

现有2个查询,需要将每个查询的结果合并起来(注意不是合并结果集,因此不能使用union),可以将每个查询的结果作为临时表,然后再从临时表中select所需的列,示例如下:
 
SELECT get.daytime, get.data as get, xh.data as xh         FROM (                 SELECT daytime, sum(get_sum) as data                 FROM yuanbao_get                 group by daytime                 order by daytime         ) as get,         (                 SELECT daytime, sum(xh_sum) as data                 FROM yuanbao_xh                 group by daytime                 order by daytime         ) as xh         where get.daytime = xh.daytime

 

转载于:https://www.cnblogs.com/jasondan/p/3490470.html

你可能感兴趣的文章
个人阅读作业7
查看>>
转载:深入浅出Zookeeper
查看>>
GMA Round 1 新程序
查看>>
node anyproxy ssi简易支持
查看>>
编译预处理指令:文件包含指令、宏定义指令、条件编译指令
查看>>
PHP函数 ------ ctype_alnum
查看>>
网站安全
查看>>
WS-Addressing 初探
查看>>
.NET+模块编排+数据库操作类的封装+分层架构+实体类+Ajax.net+Athem.NET+javascript+Activex组件+用户权限等...
查看>>
Markdown不常见功能
查看>>
(二)NUnit单元测试心得
查看>>
hdu_2604Queuing(快速幂矩阵)
查看>>
frame.bounds和center
查看>>
HDU 1102 Constructing Roads
查看>>
android StaticLayout参数解释
查看>>
多线程之ThreadLocal类
查看>>
Qt-读取文本导出word
查看>>
OC语言description方法和sel
查看>>
C#中得到程序当前工作目录和执行目录的五种方法
查看>>
扫描线与悬线
查看>>