我想创建一个函数来获得正确的一周数。 我已发布here来找到“原生”解决方案,但显然没有。
我尝试根据此mysql example
创建功能以下是转换为postgresql的代码:
CREATE OR REPLACE FUNCTION week_num_year(_date date)
RETURNS integer AS
$BODY$declare
_year integer;
begin
select date_part('year',_date) into _year;
return ceil((to_char(_date,'DDD')::integer+(to_char(('01-01-'||_year)::date,'D')::integer%7-7))/7);
end;$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;
但它给出了错误的结果,有人可以帮助我吗?
我的配置:PostgreSQL 9.2
答案 0 :(得分:16)
如果您想要正确的周数,请使用:
select extract(week from '2012-01-01'::date);
这将生成结果52
,如果您查看日历,这是正确的。
现在,如果你真的想将周数定义为“从一年的第一天开始的每7天”,这很好,虽然它与其他人使用的周数不匹配并且有一些奇怪的怪癖:
select floor((extract(doy from '2011-01-01'::date)-1)/7)+1;
顺便说一下,解析日期字符串并使用字符串函数进行攻击几乎总是一个坏主意。
答案 1 :(得分:6)
create or replace function week_num_year(_date date)
returns integer as
$body$
declare
_year date;
_week_number integer;
begin
select date_trunc('year', _date)::date into _year
;
with first_friday as (
select extract(doy from a::date) ff
from generate_series(_year, _year + 6, '1 day') s(a)
where extract(dow from a) = 5
)
select floor(
(extract(doy from _date) - (select ff from first_friday) - 1) / 7
) + 2 into _week_number
;
return _week_number
;
end;
$body$
language plpgsql immutable
答案 2 :(得分:1)
内置提取功能怎么样?
SELECT extract (week from current_timestamp) FROM A_TABLE_FROM_YOUR_DB;
答案 3 :(得分:1)
您可以通过以下方式检索星期几以及一年中的一周:
select id,extract(DOW from test_date),extract(week from test_date), testdate,name from yourtable