在Postgres中将日期转换为日期

时间:2015-09-03 14:58:57

标签: sql postgresql sql-date-functions

如何转换包含日期的列,例如'2012-08-03'到Postgres的一年?

1 个答案:

答案 0 :(得分:16)

使用extract功能:

select extract(doy from the_date_column)
from the_table