gpt4 book ai didi

postgresql - 在 postgresql 中提取周数的匹配年份

转载 作者:行者123 更新时间:2023-11-29 11:43:01 27 4
gpt4 key购买 nike

在 postgresql 中,extract(week from '2014-12-30'::timestamp) 给出了 2015 年的第 1 周。如何提取与周数对应的相关年份?使用 extract(year ... 给出 2014

最佳答案

因为 week 是 ISO 定义的周,所以您需要 isoyear:

#= select extract(isoyear from '2014-12-30'::timestamp);
date_part
-----------
2015
(1 row)

来自docs :

By definition, ISO weeks start on Mondays and the first week of a year contains January 4 of that year. In other words, the first Thursday of a year is in week 1 of that year.

In the ISO week-numbering system, it is possible for early-January dates to be part of the 52nd or 53rd week of the previous year, and for late-December dates to be part of the first week of the next year. For example, 2005-01-01 is part of the 53rd week of year 2004, and 2006-01-01 is part of the 52nd week of year 2005, while 2012-12-31 is part of the first week of 2013. It's recommended to use the isoyear field together with week to get consistent results.

关于postgresql - 在 postgresql 中提取周数的匹配年份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31249468/

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