PostgreSQL获取年月日

1.获取当前日期的年份

select to_char(t.detect_date,'YYYY')
select extract(year from now())为double precision 格式类型

  select to_char((SELECT now()::timestamp),'yyyy') 

2.获取下一年
  select to_char((SELECT now()::timestamp+ '1 year'),'yyyy') 
3.获取上一年
  select to_char((SELECT now()::timestamp+ '-1 year'),'yyyy')

其他都为为 character varying格式类型

 

你可能感兴趣的