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 分组去重查询的主要内容,如果未能解决你的问题,请参考以下文章