如何在PostgreSQL数据库中使用DAY函数?

发布于 2024-12-27 03:28:05 字数 376 浏览 0 评论 0原文

我对 MySQL 数据库有这个查询:

Article.where('DAY( created_at ) = DAY( ? )', day)

我尝试在 PostgreSQL 数据库中也使用上面的查询,特别是我正在尝试这样的事情:

Article.where("DATE_PART('day', created_at) = DATE_PART('day', ?)", today)

但我收到错误 PGError: ERROR: function date_part(unknown,unknown)不是唯一的

为什么会出现这个错误?我以为我有文档的语法......

I have this query for MySQL database:

Article.where('DAY( created_at ) = DAY( ? )', day)

And I try to use the query above also in the PostgreSQL database, specifically I am trying something like this:

Article.where("DATE_PART('day', created_at) = DATE_PART('day', ?)", today)

But I am getting the error PGError: ERROR: function date_part(unknown, unknown) is not unique

Why is there that error? I thought I have the syntax by documentation...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

禾厶谷欠 2025-01-03 03:28:05

看起来今天是一个模式YYYY-MM-DD的字符串。您可以只提取最右边的两个字符,而不是转换为日期然后提取数字。会更快更简单:

Article.where("date_part('day', created_at::date)::int
                        = right(?, 2)::int", today)

right( ) 需要 PostgreSQL 9.1 或更高版本。在旧版本中,您可以替换:

... = substring(?, 9)

因为您需要字符 9 和 10。


这也应该有效:

Article.where("date_part('day', created_at::date)::int
                        = date_part('day', ?::date)", today)

注意,您必须将 '2012-01-16' 转换为 date ,而不是间隔'2012-01-16'::interval 毫无意义。

It seems today is a string of the pattern YYYY-MM-DD. You could just extract the rightmost two characters, instead of casting to date and then extracting a number. Would be faster and simpler:

Article.where("date_part('day', created_at::date)::int
                        = right(?, 2)::int", today)

right() requires PostgreSQL 9.1 or later. In older version you can subsitute:

... = substring(?, 9)

Because you want characters 9 and 10.


This should work, too:

Article.where("date_part('day', created_at::date)::int
                        = date_part('day', ?::date)", today)

Note, that you must cast '2012-01-16' to date, not to interval. '2012-01-16'::interval would be nonsense.

森末i 2025-01-03 03:28:05

根据 文档 有两个函数:

  • date_part (文本,时间戳)
  • date_part(文本,间隔)

因此数据库无法选择您想要的。将第二个参数转换为时间戳,例如:

DATE_PART('day', created_at::interval) = DATE_PART('day', ?::interval)

According to the documentation there are two functions:

  • date_part(text, timestamp)
  • date_part(text, interval)

so database cannot choose which one you want. Cast the second parameter to timestamp, e.g. like this:

DATE_PART('day', created_at::interval) = DATE_PART('day', ?::interval)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文