如何使用mysql查询从表中选择最频繁的项目?

发布于 2024-09-16 09:25:33 字数 62 浏览 9 评论 0原文

我使用mysql为事务表创建一个表...我需要从该表中检索频繁的事务数据...如何从表中找到频繁的数据帮助我!

i create a table for transaction table using mysql... i need to retrieve the frequent transaction data from that table... how find the frequent data from the table help me!

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

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

发布评论

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

评论(1

番薯 2024-09-23 09:25:33

试试这个:

Select Top 1 Item
From 
   (Select Item, Count(*) Frequency
    From Table
    Group By Item
    Order By Count(*) Desc) Z

它只返回一条记录,或者...

Select Item From
   (Select Item, Count(*) Frequency
    From Table
    Group By Item) Z
Where Z.Frequwncy = 
  (Select Max(Frequency) From Z)

它将返回具有该最大频率(计数)的所有记录。
添加您需要的任何谓词或其他输出列以进一步自定义 SQL...

try this:

Select Top 1 Item
From 
   (Select Item, Count(*) Frequency
    From Table
    Group By Item
    Order By Count(*) Desc) Z

which returns only one record, or...

Select Item From
   (Select Item, Count(*) Frequency
    From Table
    Group By Item) Z
Where Z.Frequwncy = 
  (Select Max(Frequency) From Z)

which will return all records with that maximum frequency (count).
Add whatever predicates or other output columns you need to furthur customize the sql...

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