热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在带有Squeel的select中使用NOW()-UsingNOW()inaselectwithSqueel

Iwanttogettheaverageofthedifferencebetweenthecurrenttimeandadatetimevalueinthedat

I want to get the average of the difference between the current time and a datetime value in the database with Squeel:

我想用Squeel获取数据库中当前时间和日期时间值之间的差异的平均值:

Car.select{average(NOW() - created_at)}

Which tries to take "NOW" as a column in the database:

哪个尝试将“NOW”作为数据库中的列:

ActiveRecord::StatementInvalid: PGError: ERROR:  column cars.NOW does not exist
LINE 1: SELECT avg("cars"."NOW" - "cars"."created_at") FROM "cars"  ...

Any way to do this in Squeel?

在Squeel有什么办法吗?

1 个解决方案

#1


1  

Per Ernie Miller's answer here: https://github.com/ernie/squeel/issues/112

Per Ernie Miller的回答:https://github.com/ernie/squeel/issues/112

Car.select{average(now.func - created_at)}

Car.select {average(now.func - created_at)}


推荐阅读
author-avatar
-林之涵_396
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有