postgres中的日期转换

时间:2013-08-29 20:13:19

标签: sql postgresql postgresql-9.1

我有这样的事情:

2010-09-14 00:00:00

并且只想在上面的示例中显示月份/年份或类似内容:

9/10

我能够通过这样做来提取年份部分

select extract (year from E.DISCHARGE_DATE)as YR_NB 

但无法获得我希望在输出结果中看到的9/10结果。

1 个答案:

答案 0 :(得分:1)

select to_char(the_date_column, 'mm/yy') from the_table;

手册中的更多详细信息:http://www.postgresql.org/docs/current/static/functions-formatting.html