如何使用单个查询计算子类别的数量并更新 mysql 中的父行计数?

发布于 2024-12-11 00:33:08 字数 543 浏览 0 评论 0原文

我将类别和子类别存储在同一个表中。如何计算所有子类别并更新我的父类别数据行。

categoryId   sub cat id    category_count        subcategory_count
        1           3               0                      3              
        1           4               0                      1
        1           5               0                      7
        1           0               5                      0

我需要用子类别计数的总和更新类别计数。

例如;- 5 是我的类别计数。我希望我的类别计数像这样 5+ (3+7+1) 所以我的类别计数应该是 16

我如何为此编写一个查询。

请帮我 谢谢

I am stroring categories and sub categories in same table. How can I take count of all subcategories and update my parent category row of data.

categoryId   sub cat id    category_count        subcategory_count
        1           3               0                      3              
        1           4               0                      1
        1           5               0                      7
        1           0               5                      0

I need to update category count with sum of sub category count.

for eg;- 5 is my category count. I want my category count like this
5+ (3+7+1) so my category count should be 16

How can I write a single query for that.

please help me
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逐鹿 2024-12-18 00:33:08

希望这一点有所帮助::

Select (sum(subcatecory_count)+category_count), category_count from table group by category_count;

Hope this one help::

Select (sum(subcatecory_count)+category_count), category_count from table group by category_count;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文