热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SQL查询实体优化与实战技巧分享

12345678910111213141516171819202122232425262728293031public Map delete(JSONObject head, JSONObject b

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
public Map delete(JSONObject head, JSONObject body)

            throws Exception {

        Map attributes=new HashMap();

        JSONArray coupOnJson=body.optJSONArray("couponId");

         

            String token=head.optString("token");

        Object object=UserCacheManage.getAppUser(token);

       

        //if(object!=null){

        //UserCache user=(UserCache)object;

        String userId="4028668150c6aedb0150c6ddde750005";

        HhUserEntity hhUserEntity=super.getEntity(HhUserEntity.class, userId);

        if(hhUserEntity!=null){

            String ids="";

            Object [] coupOnIds=(Object[])couponJson.toArray();

            if(couponIds!=null&&couponIds.length>0){

                for(int i=0;i
                    if(i==0){

                        ids=ids+"'"+couponIds[i]+"'";

                    }else{

                        ids=ids+",'"+couponIds[i]+"'";

                    }

                }    

            }

            String query ="SELECT c FROM couponpublish c,couponpool s WHERE s.owner='"+userId+"' and c.pubid=s.pubid";

            List list = super.findListbySqlReturnMap(query);

            if(list!=null&&list.size()>0){

                super.deleteAllEntitie(list);

            }

想查询couponpublish表的实体然后删除掉,但是报错Unknown column 'c' in 'field list'

select c这样写不行。。应该咋写= =



   



推荐阅读
author-avatar
cxsw01
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有