MySQL: UPDATE table with COUNT from another table?

前端 未结 2 2073
礼貌的吻别
礼貌的吻别 2020-12-10 07:22

I thought this would be simple but I can\'t get my head around it...

I have one table tbl1 and it has columns id,otherstuff,

相关标签:
2条回答
  • 2020-12-10 07:37

    If your num column is a valid numeric type your query should work as is:

    UPDATE tbl1 SET num = (SELECT COUNT(*) FROM tbl2 WHERE id=tbl1.id)
    
    0 讨论(0)
  • 2020-12-10 07:51
    UPDATE tbl1, (select id, count(*) as idCount from tbl2 group by id) as t2
    SET    tbl1.num = t2.idCount
    WHERE  tbl1.id = t2.id;
    
    0 讨论(0)
提交回复
热议问题