postgresql age 计算出指定时间点到当前时间的时间差
# select extract(year from age('2013-01-01'::date)); date_part ----------- 6
结果是一串人类可读的文字,现在需要截取其中自己需要的部分
# select extract(year from age('2019-01-01'::date)); date_part ----------- 0
https://www.postgresql.org/docs/10/functions-datetime.html