Postgresql 通过出生日期获取年龄的操作

三个基础的时间表示函数 current_date/current_time/now()

select current_date ;

返回当前日期以 年-月-日(yyyy-mm-dd)的形式:

2019-01-10

select current_time;

返回当日时间以 时:分:秒+时区(hh:mm:ss )的形式:

17:49:11.585308+08

select now();

返回当前时间 以 年-月-日 时:分:秒(yyyy-mm-dd hh:mm:ss)的形式:

2019-01-10 17:50:45.354983+0

然后几个计算公式

第一种是直接对日期进行操作,

select (current_date – ‘1993-01-01’)/365 age; select (current_date – ‘1993-01-01 16:00:00’)/365 age;

输出 26 26 两种时间格式结果一致

第二种方式

select age(current_date, ‘1993-01-01’) age; select age(current_date, ‘1993-01-01 16:00:00’) age;

输出

26 years 9 days

26 years 8 days 08:00:00

age()函数会输出精确的年龄字符串,根据传入的时间不同,输出的时间格式相对应

如果使用now()函数计算,需要注意age()函数能输出正确结果,直接计算单位为day

select age(current_date, '1993-01-01') age;
select age(current_date, '1993-01-01 16:00:00') age;
select (now() - '1993-01-01')/365 age;
select (now() - '1993-01-01 16:00:00')/365 age

分别输出

26 years 9 days 19:20:46.395713

26 years 9 days 03:20:46.421816

26 days 01:02:21.497111

26 days 00:59:43.688958

补充:postgresql获取当前时间的四种方式

postgresql中有四种获取当前时间的方式。

1.now()

返回值:当前年月日、时分秒,且秒保留6位小数。

2.current_timestamp

返回值:当前年月日、时分秒,且秒保留6位小数。(同上)

申明:now和current_timestamp几乎没区别,返回值相同,建议用now。

3.current_time

返回值:时分秒,秒最高精确到6位

4.current_date

返回值:年月日

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。如有错误或未考虑完全的地方,望不吝赐教。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐