sql查询一个字段不同值并返回

Posted 闫超辉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql查询一个字段不同值并返回相关的知识,希望对你有一定的参考价值。

sql

SELECT COUNT(字段),分组字段,SUM(字段),SUM(字段) 
FROM 表 GROUP BY 分组字段

 

java

    EntityWrapper<ProjectEntity> pp= new EntityWrapper<ProjectEntity>();
    pp.eq("depcode", community);
    int proc = projectService.selectCount(pp);
        pp.setSqlSelect("COUNT(depcode) as pro01,SUM(budgetmoney) as pro01money,status,SUM(usemoney)AS pro01usemoney").groupBy("status");
        List<Map<String,Object>> obj=projectService.selectMaps(pp);
        
        // 定义下标数组
                String[] indexStrList = {"01","02","03","04","05"};
                List<String> indexList=Arrays.asList(indexStrList);
                List<String> newIndexList = new ArrayList<>(indexList);
        JSONObject jsonObject = new JSONObject();
        for(Map<String,Object> m : obj){
             if(newIndexList.indexOf(m.get("status")) != -1 ){
            // 对象的key
                String key = "pro" + m.get("status");
                jsonObject.put(key,m.get("pro01"));
                jsonObject.put("pro" + m.get("status") + "money", m.get("pro01money"));
                jsonObject.put("pro" + m.get("status") + "usemoney", m.get("pro01usemoney"));
                newIndexList.remove(m.get("status"));
             }
        }
        for(String str : newIndexList){
            jsonObject.put("pro" + str,0);
            jsonObject.put("pro" + str + "money", 0);
            jsonObject.put("pro" + str + "usemoney", 0);
        }
         maptos.put("pro",jsonObject);
 

 

以上是关于sql查询一个字段不同值并返回的主要内容,如果未能解决你的问题,请参考以下文章

Django ORM查询,不同的值并加入同一张表

用sql语句查找某一行的一个值并返回那个值,怎么写? 请将详细点 ,谢谢

如何在一个 SQL 查询中检索值并在存储过程中使用它?

从 PL/SQL 中的过程返回值数组

sql 查询时有空值返回0怎么写

SQL:查询数据库中所有表的字段,并在查询结果中返回表、字段、字段描述