码迷,mamicode.com
首页 > 数据库 > 详细

oracle解决多表关联分组查询问题

时间:2014-07-09 20:04:57      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:数据   问题   type   oracle   re   c   

做了一个功能需要分组查询,同时查询A表分组查询的ID需要关联B表的数据,本来想两个表关联查询,但是报group by 语法不正确。所以做了以下修改。

select count(*), cindexid,(select vindexcode from comindex where pk_index =cindexid) as vindexcode ,iquesttype 

  from rqt_examquest 

    where pk_examquest in

         (
               select cexamquestid

              from rqt_examquest_b2

                where cjobtypeid = ‘1000LSZY123456100001‘ or cjobtypeid=‘1001LSZYp3U34Bxgv7V4‘
         )

    group by cindexid , iquesttype having iquesttype = 1 or   iquesttype = 2 or    iquesttype = 3

    order by cindexid

oracle解决多表关联分组查询问题,布布扣,bubuko.com

oracle解决多表关联分组查询问题

标签:数据   问题   type   oracle   re   c   

原文地址:http://www.cnblogs.com/shengs/p/3831541.html

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