duanfei7508 2016-12-06 10:39
浏览 294
已采纳

通过id匹配条件,根据另一个更新一个MySQL表值

I have these 2 tables below : users:

         id 7dexpn
=========== ==========
          1 0
          2 0
          3 0


user_pages:
        id     user_id 7dexpf
========== =========== ==========
       99           1 0
       98           2 1
       97           3 1
       96           3 1
       95           3 1
       94           2 0

I have successfully insert { user_pages aggregate of (7dexpf) flags} into users table (7dexpn) matching by user_pages (user_id) with users table (id) with this query

update users u join
       (select user_id, count(*) as cnt
        from user_pages 
        where `7dexpf` = 1
        group by user_id
       ) uu
       on uu.user_id = u.id
    set u.`7dexpn` = uu.cnt;

But the query not update flag back to zero if u.7dexpn = 0

  • 写回答

1条回答 默认 最新

  • dongque1646 2016-12-06 10:44
    关注

    Use a LEFT JOIN with COALESCE() :

    UPDATE users u 
    LEFT JOIN
         (SELECT user_id, COUNT(*) as cnt
          FROM user_pages 
          WHERE `7dexpf` = 1
          GROUP BY user_id
         ) uu
     ON uu.user_id = u.id
    SET u.`7dexpn` = COALESCE(uu.cnt,0);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?