Postgresql - 选择日期=“01/01/11”的内容

发布于 2024-11-04 18:01:36 字数 169 浏览 0 评论 0原文

我的 Postgresql 中有一个日期时间字段,名为“dt”。 我想做类似的事情,

SELECT * FROM myTable WHERE extract (date from dt) = '01/01/11'

正确的语法是什么?

谢谢!

I have a datetime field in my Postgresql, named "dt".
I'd like to do something like

SELECT * FROM myTable WHERE extract (date from dt) = '01/01/11'

What is the right syntax to do that?

Thanks!

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

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

发布评论

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

评论(2

给妤﹃绝世温柔 2024-11-11 18:01:36

我认为您想将 dt 转换为 date 并修复 日期文字的格式

SELECT *
FROM table
WHERE dt::date = '2011-01-01' -- This should be ISO-8601 format, YYYY-MM-DD

或者 标准版本

SELECT *
FROM table
WHERE CAST(dt AS DATE) = '2011-01-01' -- This should be ISO-8601 format, YYYY-MM-DD

extract 函数 不理解“日期”,它返回一个数字。

I think you want to cast your dt to a date and fix the format of your date literal:

SELECT *
FROM table
WHERE dt::date = '2011-01-01' -- This should be ISO-8601 format, YYYY-MM-DD

Or the standard version:

SELECT *
FROM table
WHERE CAST(dt AS DATE) = '2011-01-01' -- This should be ISO-8601 format, YYYY-MM-DD

The extract function doesn't understand "date" and it returns a number.

墨落画卷 2024-11-11 18:01:36

PostgreSQL 有许多可用的日期/时间函数,请参阅此处

在您的示例中,您可以使用:

SELECT * FROM myTable WHERE date_trunc('day', dt) = 'YYYY-MM-DD';

如果您定期运行此查询,也可以使用 date_trunc 函数创建索引:

CREATE INDEX date_trunc_dt_idx ON myTable ( date_trunc('day', dt) );

这样做的一个优点是时区具有更大的灵活性,如果必需的,例如:

CREATE INDEX date_trunc_dt_idx ON myTable ( date_trunc('day', dt at time zone 'Australia/Sydney') );
SELECT * FROM myTable WHERE date_trunc('day', dt at time zone 'Australia/Sydney') = 'YYYY-MM-DD';

With PostgreSQL there are a number of date/time functions available, see here.

In your example, you could use:

SELECT * FROM myTable WHERE date_trunc('day', dt) = 'YYYY-MM-DD';

If you are running this query regularly, it is possible to create an index using the date_trunc function as well:

CREATE INDEX date_trunc_dt_idx ON myTable ( date_trunc('day', dt) );

One advantage of this is there is some more flexibility with timezones if required, for example:

CREATE INDEX date_trunc_dt_idx ON myTable ( date_trunc('day', dt at time zone 'Australia/Sydney') );
SELECT * FROM myTable WHERE date_trunc('day', dt at time zone 'Australia/Sydney') = 'YYYY-MM-DD';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文