小编典典

如何在不使用to_char()函数的情况下从PostgreSQL中的日期中提取年份和月份?

sql

我想选择sql SELECT "year-month" from table group by "year-month" AND order by date:,其中year-month-格式为日期“ 1978-01”,“ 1923-12”。 选择couse work的to_char
,而不是“正确”的顺序:

to_char(timestamp_column, 'YYYY-MM')

阅读 202

收藏
2021-03-17

共1个答案

小编典典

date_part(text, timestamp)

例如

date_part('month', timestamp '2001-02-16 20:38:40'),
date_part('year', timestamp '2001-02-16 20:38:40')

http://www.postgresql.org/docs/8.0/interactive/functions-
datetime.html

2021-03-17