一个SQL查询中的最大计数

编程入门 行业动态 更新时间:2024-10-12 05:53:45
本文介绍了一个SQL查询中的最大计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我在oracle数据库中有下表(简体):

I have the following table (simplified) in an oracle db:

productId | modelDescription 1 | thing 2 | another thing 3 | not a thing 4 | thing

我想选择此表中出现频率最高的模型描述.问题在于可能存在几乎无限的模型描述. 因此结果集应如下所示:

I want to select the modeldescription which has the highest appearence in this table. The problem is that there can be nearly infinite model descriptions. So the resultset should look like something like this:

modelDescription | appearance thing | 2 another thing | 1 ... | ...

推荐答案

select modeldescription, count(modeldescription) from products group by modeldescription order by 2 desc

更多推荐

一个SQL查询中的最大计数

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

发布评论

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

>www.elefans.com

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