gpt4 book ai didi

mysql - 在 Rails 应用程序中将 MySQL dayofmonth 查询转换为 db agnostic

转载 作者:行者123 更新时间:2023-11-29 05:38:10 25 4
gpt4 key购买 nike

有没有一种方法可以创建与数据库无关的查询来执行与此等效的操作:

group by DAYOFMONTH(performed_on)

我需要它至少在 MySQL 和 Postgres 中工作。我正在使用 Rails/ActiveRecord,所以也许会有帮助?这是我的代码:

@works = Work.where(:user_id => current_user.id, :performed_on => (@date.beginning_of_month..@date.end_of_month))
...
@works.select('sum(hours) as total_hours, DAYOFMONTH(performed_on) as day').group('DAYOFMONTH(performed_on)')

最佳答案

符号 EXTRACT(DAY FROM ...),我相信它来自 SQL 标准,有效 in PostgreSQLin MySQL .

关于mysql - 在 Rails 应用程序中将 MySQL dayofmonth 查询转换为 db agnostic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8981772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com