如何使用mysql查询从表中选择最频繁的项目?
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
它只返回一条记录,或者...
它将返回具有该最大频率(计数)的所有记录。
添加您需要的任何谓词或其他输出列以进一步自定义 SQL...
try this:
which returns only one record, or...
which will return all records with that maximum frequency (count).
Add whatever predicates or other output columns you need to furthur customize the sql...