将变量传递给 postgresql 的日期 extract() 函数?

发布于 2024-10-18 22:20:23 字数 243 浏览 2 评论 0原文

我不知道如何将变量传递到 postgresql 提取函数中,例如:

select 'day' as i;
extract(i from a_date)

这给了我

错误:带有时区单位的时间戳 “我”无法识别

如果我可以传入一个字符串,extract('day' from a_date),为什么不能传入一个变量?

I can't work out how to pass a variable into the postgresql extract function like:

select 'day' as i;
extract(i from a_date)

that gives me

ERROR: timestamp with time zone units
"i" not recognized

If I can pass in a string, extract('day' from a_date), why not a variable ?

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

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

发布评论

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

评论(1

指尖凝香 2024-10-25 22:20:23

ANSI SQL 不支持那里的参数。请改用 date_part 函数。

http://www.postgresql.org/docs /9.0/interactive/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT

postgres=# select extract(day from current_timestamp);
 date_part 
-----------
        23
(1 row)

postgres=# select date_part('day', current_timestamp);
 date_part 
-----------
        23
(1 row)

ANSI SQL doesn't support parameters there. Use a date_part function instead.

http://www.postgresql.org/docs/9.0/interactive/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT

postgres=# select extract(day from current_timestamp);
 date_part 
-----------
        23
(1 row)

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