从 PostgreSQL 中的时间戳获取日期

发布于 2024-12-03 14:10:18 字数 194 浏览 1 评论 0原文

我有一个 PostgreSQL 时间戳,因为

2009-12-22 11:01:46

我需要将其更改为日期

2009-12-22

,以便我可以比较 postgreSQL 中的日期

如何实现此转换?

I have a PostgreSQL timestamp as

2009-12-22 11:01:46

I need to change this to date as

2009-12-22

So that I can compare the dates in postgreSQL

How can I achieve this transformation?

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

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

发布评论

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

评论(3

三生池水覆流年 2024-12-10 14:10:18

将其投射到日期

SELECT yourtimestamp::date;

如果您需要提取其他类型的内容,您可能需要使用 EXTRACT date_trunc

两个链接都指向同一个页面,您会发现更多与日期/时间相关的功能。

Cast it to date.

SELECT yourtimestamp::date;

If you need to extract other kinds of stuff, you might want to use EXTRACT or date_trunc

Both links are to the same page, were you'll find more date/time-related functions.

江南月 2024-12-10 14:10:18

您可以使用 Postgres 日期函数 之一,例如date_trunc,或者你可以直接转换它,如下所示:

SELECT timestamp '2009-12-22 11:01:46'::date

>>> 2009-12-22

You can either use one of the Postgres date functions, such as date_trunc, or you could just cast it, like this:

SELECT timestamp '2009-12-22 11:01:46'::date

>>> 2009-12-22
小红帽 2024-12-10 14:10:18
SELECT [timestamp column] ::date;

在选择查询中,您可以根据日期进行搜索

WHERE [timestamp column] :: date = '2022-05-30'
SELECT [timestamp column] ::date;

Along in select query you can search on the basis of date

WHERE [timestamp column] :: date = '2022-05-30'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文