使用命名范围
我有一个时间表模型,其中开始时间为日期时间,持续时间以分钟为整数。
使用命名范围有一种方法可以获取具有 (start_time +uration)
(start_time +uration) <当前时间
?
I have a schedule model having start time as date time and duration in minutes as integer.
Using named scope is there a way I can get the records having (start_time + duration) < current_time
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SQL 级别日期操作函数来实现您所要求的功能,例如 mysql 的 DATE_ADD:
尽管如果考虑性能,您可能需要预先计算“end_time”列并在其上添加索引。
You might implement what you asked for with SQL level date manipulation functions, like mysql's DATE_ADD:
Though if performance is a consideration, you might want to precalculate an 'end_time' column and add an index on it.