group by 分组去重查询

Posted jpr-ok

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了group by 分组去重查询相关的知识,希望对你有一定的参考价值。

数据库中的数据是这样的:

技术图片

 

想要看看有几种类型,可以用group by:

  select * from activiti.act_ru_task 
 where PROC_INST_ID_ in (select PROC_INST_ID_ FROM activiti.act_ru_execution where BUSINESS_KEY_ in 
 (select  a.app_id from  bill_data.t_org_br_apply_info a left join user.t_user_info b on a.user_id=b.id where a.app_id in 
 (select b.app_id from bill_data.t_org_br_apply_person b  where 
b.tel_1 like %15910383% or
b.tel_1 like %15910384%)))
 group by NAME_;

技术图片

 

以上是关于group by 分组去重查询的主要内容,如果未能解决你的问题,请参考以下文章

oracle中group by用法

having和group by的区别?

MySQL GROUP BY 语句

当进行数据的去重查询时,使用group by效率更高。

SQL中查询多个字段时,GROUP BY 要怎么使用?

MySQL中的 distinct 和 group by 去重效率区别