mysql加入有限制吗?

编程入门 行业动态 更新时间:2024-10-27 07:20:09
本文介绍了mysql加入有限制吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一张带有类别,产品和数量的表格.所有整数. 我正在寻找最有效的查询,该查询将为我提供每个类别的前10名产品(最高数量).

I have a table with category, product and count. All integers. I'm looking for the most efficient query that will give me the top 10 products (highest count) for each category.

我尝试了几个子选择和联接,但无法在单个查询中弄清楚该怎么做.感谢您的帮助.

I've tried several subselects and joins but couldn't figure out how to do it in a single query. Thanks for your help.

推荐答案

select a.* from t a where 10 > ( select count(*) from t b where b.category=a.category and b.count<a.count )

我认为这就是您所需要的.

I think this is what you need.

更多推荐

mysql加入有限制吗?

本文发布于:2023-10-17 11:02:51,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1500701.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:mysql

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!