码迷,mamicode.com
首页 > 其他好文 > 详细

GROUP BY 和 GROUP_CONCAT的使用

时间:2017-11-10 16:57:21      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:oba   bsp   images   inf   where   image   span   template   repo   

select b.templateId,GROUP_CONCAT(c.id),a.executeResult 
from vrv_paw_rulestatus a, vrv_paw_terminaltobaselinereport b, vrv_paw_rule c, vrv_paw_template_rule d
where a.terOnlyId = b.terminalInfoId and b.templateId = d.templateId and d.ruleOnlyId = c.id 
GROUP BY b.templateId,a.executeResult

技术分享

原来的数据:

select b.templateId,c.id,a.executeResult from vrv_paw_rulestatus a, vrv_paw_terminaltobaselinereport b, vrv_paw_rule c, vrv_paw_template_rule d
where a.terOnlyId = b.terminalInfoId and b.templateId = d.templateId and d.ruleOnlyId = c.id 

技术分享

与我需要的数据不一样

加group by只加一个:id不全,丢失了;executeResult也丢失了

select b.templateId,c.id,a.executeResult from vrv_paw_rulestatus a, vrv_paw_terminaltobaselinereport b, vrv_paw_rule c, vrv_paw_template_rule d
where a.terOnlyId = b.terminalInfoId and b.templateId = d.templateId and d.ruleOnlyId = c.id 
GROUP BY b.templateId

技术分享

 

GROUP BY 和 GROUP_CONCAT的使用

标签:oba   bsp   images   inf   where   image   span   template   repo   

原文地址:http://www.cnblogs.com/goloving/p/7815144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!