如何使用单个查询计算子类别的数量并更新 mysql 中的父行计数?
我将类别和子类别存储在同一个表中。如何计算所有子类别并更新我的父类别数据行。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这一点有所帮助::
Hope this one help::