我在oracle db中有下表(简化):
productId | modelDescription
1 | thing
2 | another thing
3 | not a thing
4 | thing
我想选择此表中具有最高外观的模型描述。问题是可能存在几乎无限的模型描述。 所以结果集看起来像这样:
modelDescription | appearance
thing | 2
another thing | 1
... | ...
答案 0 :(得分:3)
select modeldescription, count(modeldescription)
from products
group by modeldescription
order by 2 desc
答案 1 :(得分:1)
此外,如果您只想要最高,请添加以下内容:
选择前1名模型说明......