移动平均线 - MySQL
我正在尝试实施系统范围的登录限制,并且需要计算过去 3 个月的每日平均登录尝试失败次数。
我目前正在每次登录失败时插入一条记录,每个记录都有一个时间戳。我怎样才能在 MySQL 中做到这一点?
预先感谢您的帮助
I'm trying to implement system-wide login throttling and I need to calculate the daily average number of failed login attempts from the last 3 months.
I'm currently inserting a record on every login fail, each with a timestamp. How can I do this in MySQL?
Thanks in advance for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个表
mytable
,其字段date
的类型为date
、datetime
或timestamp
>Assuming you have a table
mytable
with fielddate
of typedate
,datetime
ortimestamp